@extends('layouts.app') @section('title', 'Workout Report') @section('content')
| # | Day | From | To | Workout | Category | Sets | Reps | Kg | Rest | Remarks |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $workout->day }} | {{ \Carbon\Carbon::parse($workout->workout_date_from)->format('d-m-Y') }} | {{ \Carbon\Carbon::parse($workout->workout_date_to)->format('d-m-Y') }} | {{ $workout->workout }} | {{ $workout->category }} | {{ $workout->sets }} | {{ $workout->reps }} | {{ $workout->kg }} | {{ $workout->rest_time }} | {{ $workout->remarks }} |
| No records found. | ||||||||||