@php
// Ensure availability is a Collection (safe even if controller passed array or null)
$availabilities = collect($data['availability'] ?? []);
// Group by day (normalize to lowercase). If your DB stores weekday names use that; otherwise adapt mapping.
$grouped = $availabilities->groupBy(function($item) {
return strtolower(data_get($item, 'day', 'unknown'));
});
@endphp
@if($grouped->isEmpty())