@extends('layouts.admin') @section('title', 'Shifts') @section('content') @php $statIcons = [ 'calendar' => '', 'sun' => '', 'check-circle' => '', 'clock' => '', ]; @endphp
@foreach ($cards as $card)

{{ $card['label'] }}

{{ $card['value'] }}

{{ $card['meta'] }}

@endforeach
@foreach ($shifts as $shift)

{{ $shift['title'] }}

{{ $shift['date'] }}

{{ $shift['chip']['label'] }}

Time

{{ $shift['time'] }}

Location

{{ $shift['location'] }}

Department

{{ $shift['department'] }}

Staff Assignment

{{ $shift['assignment'] }}

@endforeach
@endsection