@extends('layouts.app') @section('content')

Workouts

Workouts for Course: {{ $course->title }}

@if (session('success')) @endif @if ($errors->any()) @endif
Back
@forelse($workouts as $workout) @empty @endforelse
Title Course Image Description Actions
{{ $workout->workout_title }} {{ $workout->course->course_title }} @if($workout->workout_image) Workout Image @endif {{ $workout->course_description }}
@csrf @method('DELETE')
No workouts found for this course.
@endsection