@extends('layouts.admin') @section('title', 'Stores') @section('content')
Manage store partners, payout readiness, availability, and verification status from one clean workspace.
| ID | Store | Owner | Location | Payout | Status | Verification | Orders | Actions |
|---|---|---|---|---|---|---|---|---|
| #{{ $restaurant->id }} |
@if($restaurant->logo_image)
{{ $restaurant->name }}
{{ ucfirst($restaurant->service_type ?? 'food') }}
@if($restaurant->store_type)
{{ $restaurant->store_type }}
@endif
{{ $restaurant->email }}
{{ $restaurant->phone }}
|
{{ $owner->name ?? 'N/A' }}
{{ $owner->email ?? '' }}
|
{{ $restaurant->city }}, {{ $restaurant->state }}
{{ $restaurant->pincode }}
|
@if($isPayoutReady) Ready @elseif($hasAnyPayoutData) Partial @else Missing @endif |
is_open ? 'checked' : '' }}>
|
@if($restaurant->is_verified) Verified @else Pending @endif | {{ number_format($restaurant->orders_count ?? 0) }} | |
No Stores FoundClick Add Store to create your first store partner. |
||||||||