Success! {{ session('success') }}
@endif
List of Restaurants
Name | Location | Photo | Created On | ||
---|---|---|---|---|---|
No Restaurants found | @else @foreach ($restaurants as $restaurant)|||||
{{ $restaurant->name }} | @if($restaurant->location != 0 && $restaurant->locations) {{ $restaurant->locations->name }}, ({{ $restaurant->locations->city->name }},{{ $restaurant->locations->city->state->name }}, {{ $restaurant->locations->city->state->country->name }}) @else No Location @endif |
@if ($restaurant->image_path)
|
{{ $restaurant->created_at }} | @if ($canEdit) Edit @endif @if ($canDelete) Delete @endif |