@extends('layouts.app') @section('title', 'Shift Templates') @section('content')

Shift Templates

Weekly Rota
@foreach ($shifts as $s) @endforeach
NameTimeBreakType
{{ $s->name }} {{ \Carbon\Carbon::parse($s->start_time)->format('h:i A') }} – {{ \Carbon\Carbon::parse($s->end_time)->format('h:i A') }} {{ $s->break_mins }} min {{ ucfirst($s->shift_type) }}
@csrf @method('DELETE')
@endsection