My Availability

Select the dates and times you are available for lessons

@if ($errors->any())

Whoops! Something went wrong.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf

Your Availability Schedule

@foreach ($availabilities as $item) @endforeach
Date Day Start End
{{ \Carbon\Carbon::parse($item->date)->format('d M Y') }} {{ \Carbon\Carbon::parse($item->date)->format('l') }} {{ \Carbon\Carbon::parse($item->start_time)->format('h:i A') }} {{ \Carbon\Carbon::parse($item->end_time)->format('h:i A') }}
@csrf @method('DELETE')