@extends('layouts.master')
@section('Title')
List of Dishes
@endsection
@section('content')
@if (Session::has('Msg_Dish_Edit'))
{{Session::get('Msg_Dish_Edit')}}
@endif
| ID |
Image |
Name |
Restaurant |
Item Category |
Price |
Active |
Action |
@foreach($dishes as $dish)
| #{{$dish->id}} |
|
{{$dish->name}} |
{{$dish->description}} |
{{$dish->id}} |
KD{{$dish->price}} |
Active
|
|
|
@endforeach
| ID |
Image |
Name |
Restaurant |
Item Category |
Price |
Active |
Action |
@endsection
@section('scripts')
@endsection