{{ __('availability') }}
@php $days = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday']; // Use the passed-in variable, or an empty array for the create form $availability = $shopWorkingDays ?? []; @endphp @foreach($days as $day) @php $isChecked = isset($availability[strtolower($day)]); $startTime = $isChecked ? $availability[strtolower($day)]['start_time'] : ''; $endTime = $isChecked ? $availability[strtolower($day)]['end_time'] : ''; @endphp
@endforeach