@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Workout Plans

Selected
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @foreach($workoutPlans as $workoutPlan) @endforeach
Workout Plan Type Bundle Color Code Status Created Date Actions
{{$workoutPlan->title}} {{$workoutPlan->type}}
{{$workoutPlan->bundle->title}}
color_code)}}; border: 1px solid #0000001a !important">
@if($workoutPlan->status == 1)
Published
@else
Inactive
@endif
{{date('F d, Y', strtotime($workoutPlan->created_at))}} Actions
@include('partials.footer')
@include('global.footer-links')