@extends('adminlte::page') @section('title', 'Restaurants') @section('content_header')

Restaurants - Total ({{count($restaurants)}})

@stop @section('content')

List of Restaurants

{{-- --}} @foreach ($restaurants as $restaurant) @endforeach {{-- --}}
ID Image Restaurant Owner Name Active ActionCreated at Action
#{{ $restaurant->id }} {{ $restaurant->name }} {{ $restaurant->user->name }} @if ($restaurant->active === 1) Active @else Inactive @endif id."/edit")}}>
#ID Image Name Restaurant Category PriceCreated at Action
@stop @section('js') @stop