@extends('layouts.admin') @section('title', 'Branch Stores') @section('content')
@forelse($restaurants as $restaurant) @empty @endforelse
StoreOwnerLocationOrdersStatusVerified
{{ $restaurant->name }}
{{ $restaurant->email }}
{{ $restaurant->owner?->name ?? 'N/A' }} {{ $restaurant->formatted_address }} {{ $restaurant->orders_count }} {{ $restaurant->is_open ? 'Open' : 'Closed' }} {{ $restaurant->is_verified ? 'Verified' : 'Pending' }} @if(($capabilities['restaurants_edit'] ?? false) && ! $restaurant->is_verified)
@csrf
@endif @if($capabilities['restaurants_edit'] ?? false) @endif
No stores assigned.
@endsection