@extends('layouts.admin') @section('title', 'Caterer Item') @section('content')

Caterer Item

Update Caterer Item

{{ Html::ul($errors->all()) }}
@csrf

Fill details to submit


Add Meal Choice Count


@if (Session::has('message')) @endif
@php $meal_type_items=[]; @endphp @foreach($meal_types as $meal_type) @php $meal_type_items = DB::table('meal_type_items')->where('meal_type_id',$meal_type->id)->get(); @endphp

@endforeach
@foreach($addon_category_items as $val) @php $getRec=DB::table('caterer_item_addons')->where('caterer_item_id',$id)->where('addon_item_id',$val->id)->whereNull('deleted_at')->first(); @endphp {{$val->title}} ({{$val->cat_name}}) @endforeach


@foreach($addon_category_items as $val) @php $getRec=DB::table('caterer_item_addons')->where('caterer_item_id',$id)->where('addon_item_id',$val->id)->whereNull('deleted_at')->first(); @endphp {{$val->title}} ({{$val->cat_name}}) @endforeach

Add Meal Choice Count

{{ Form::close() }}
@endsection @section('footer-scripts') @include('scripts.carterer') @endsection