@extends('layouts.admin') @section('title', 'Stores') @section('content')
Restaurant Network

Store Management

Manage store partners, payout readiness, availability, and verification status from one clean workspace.

Add Restaurant
@if(session('success')) @endif @if(session('upload_errors')) @endif
Total Stores
{{ number_format($totalRestaurants ?? 0) }}
Active Stores
{{ number_format($activeRestaurants ?? 0) }}
Pending Verification
{{ number_format($pendingVerification ?? 0) }}
Total Orders
{{ number_format($totalOrders ?? 0) }}

Store List

Showing partners, owners, payout readiness and live status.
{{ number_format($restaurants->total()) }} Stores
@forelse($restaurants as $restaurant) @php $owner = $restaurant->owner; $hasAccountHolder = filled($owner?->account_holder_name); $hasGatewayAccount = filled($owner?->gateway_account_id) || filled($owner?->stripe_account_id); $hasBankAccount = filled($owner?->bank_name) && filled($owner?->account_number) && filled($owner?->ifsc_code); $hasUpi = filled($owner?->upi_id); $isPayoutReady = $hasAccountHolder && ($hasGatewayAccount || $hasBankAccount || $hasUpi); $hasAnyPayoutData = $hasAccountHolder || $hasGatewayAccount || $hasBankAccount || $hasUpi || filled($owner?->bank_name) || filled($owner?->account_number) || filled($owner?->ifsc_code); @endphp @empty @endforelse
ID Store Owner Location Payout Status Verification Orders Actions
#{{ $restaurant->id }}
@if($restaurant->logo_image) @else
@endif
{{ $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) }}
@csrf @method('DELETE')
No Stores Found

Click Add Store to create your first store partner.

@endsection