@extends('layouts.master') @section('Title') Restaurants @endsection @section('content')

Restaurants

Manage all restaurants

@if (Session::has('Msg_Restaurant_Edit'))
{{Session::get('Msg_Restaurant_Edit')}}
@endif

List of Restaurants

@foreach($restaurants as $restaurant) @endforeach
ID Image Restaurant Owner Name Active Action
#{{$restaurant->id}} {{$restaurant->name}} {{$restaurant->uname}} Active
ID Image Restaurant Owner Name Active Action
@endsection @section('scripts') @endsection