@extends('layouts.admin') @section('title', 'Restaurants') @section('content')
Add Restaurant
@forelse ($restaurants as $restaurant) @empty @endforelse
Name Owner City Commission % Rating Status Actions
{{ $restaurant->name }} {{ $restaurant->owner_name }} {{ $restaurant->city->name ?? '-' }} {{ $restaurant->commission_percent }}% {{ $restaurant->avg_rating }} {{ ucfirst($restaurant->status) }} Edit @if ($restaurant->status === 'pending')
@csrf
@csrf
@elseif ($restaurant->status === 'approved')
@csrf
@elseif ($restaurant->status === 'blocked')
@csrf
@endif @if ($restaurant->status !== 'banned')
@csrf
@endif
No restaurants found.
{{ $restaurants->links() }}
@endsection