@extends('layouts.master')
@section('Title')
List of Dishes
@endsection
@section('content')
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