@extends('layouts.vertical') @section('css') @endsection @section('breadcrumb')

Manage meal menu

@endsection @php $selectedDay = 0; $selectDay = 'mon'; if(app('request')->input('d') != ""){ $selectedDay = app('request')->input('d'); if($selectedDay > 6){$selectedDay = 0;$selectDay = 'mon';} } $days = config('constant.days'); @endphp @section('content')
@csrf
Tap to select the meals
@if(isset($meals) && !empty($meals)) @foreach ($meals as $meal) {{-- @if((isset($meal->$selectDay) && $meal->$selectDay == true) || !isset($meal->$selectDay)) --}}
{{-- @endif --}} @endforeach @endif {{--
--}}
@include('school.teachers.addMealModal') @include('school.teachers.editMealModal') @endsection @section('script-bottom') @endsection