@extends('layouts.client') @section('title', "Day {{ $day }} / Week {{ $week }}") @push('styles') @endpush @section('content')

Day {{ $day }} / Week {{ $week }}

@foreach($meals as $meal)
Meal image
{{ ucfirst($meal->meal_type) }}
{{ $meal->short_description }}
{{ $meal->prep_time }} min
@endforeach

Click on a meal to view full details.

@endsection @push('scripts') @endpush