@extends('admin.account.show') @section('content')

My Workout

@foreach ($myworkouts as $workout) @endforeach
ID Avatar Title Goal Level Created Date Actions
{{ $workout->id ?? '--' }}
{{ ucfirst($workout->title ?? '--') }} {{ $workout->goal ?? '--' }} {{ $workout->level ?? '--' }} {{ date('F d, Y', strtotime($workout->created_at)) }} Actions
@endsection