@extends('layouts.admin') @section('title', 'Restaurants') @section('content')
| 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') @elseif ($restaurant->status === 'approved') @elseif ($restaurant->status === 'blocked') @endif @if ($restaurant->status !== 'banned') @endif |
| No restaurants found. | ||||||