@extends('layouts.admin') @section('title', 'Businesses Management') @section('content')
Manage all registered businesses and their information
Total Businesses
Verified
Pending Review
Rejected
| Business | Owner | Phone | Plan | Status | Venues | Registered | Actions | |
|---|---|---|---|---|---|---|---|---|
|
{{ $business->business_name }} ID: {{ $business->id }} |
{{ $business->owner->name ?? '-' }} {{ $business->owner->email ?? '-' }} |
{{ $business->email }} | {{ $business->phone }} | @if($business->subscription) {{ $business->subscription->plan->name }} @else Free @endif | @if($business->verification_status === 'verified') Verified @elseif($business->verification_status === 'pending') Pending @else Rejected @endif | {{ $business->venues_count ?? 0 }} | {{ $business->created_at->format('M d, Y') }} | |
|
No businesses found |
||||||||