@extends('layouts.app') @section('content')

Restaurant List

Add Restaurant
@if(session('success'))
{{ session('success') }}
@endif @if(isset($restaurants) && $restaurants->count() > 0) @foreach($restaurants as $restaurant) @endforeach
# Name Email Address Website Created At Actions
{{ $loop->iteration }} {{ $restaurant->user->name ?? '-' }} {{ $restaurant->user->email ?? '-' }} {{ $restaurant->address ?? '-' }} {{ $restaurant->website ?? '-' }} {{ $restaurant->created_at->format('d M Y') }}
@else

No restaurants found!

@endif
@endsection