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

Workout Bundles

Selected
@if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @foreach($workoutBundles as $bundle) @endforeach
Workout Bundle Description Price Actual Price Status Created Date Actions
{{$bundle->title}} {{$bundle->category->title}}
{{$bundle->description}} ${{$bundle->price}} ${{$bundle->actual_price}} @if($bundle->status == 1)
Published
@else
Inactive
@endif
{{date('F d, Y', strtotime($bundle->created_at))}} Actions
@include('partials.footer')
@include('global.footer-links')