@extends('layouts.app') @section('title', 'Training Calendar') @section('content') @include('partials.flash') {{-- Month navigation --}}
chevron_left

{{ $anchor->format('F Y') }}

chevron_right Today
{{ $sessions->count() }} {{ Str::plural('session', $sessions->count()) }} this month list List add New training
{{-- Month grid --}}
@foreach(['Mon','Tue','Wed','Thu','Fri','Sat','Sun'] as $dow)
{{ $dow }}
@endforeach
@foreach($weeks as $week)
@foreach($week as $day) @endforeach
@endforeach
@endsection