@extends('layouts.admin') @section('title', 'Inventory Tenants') @push('styles') @endpush @section('content')
| Business Name | Owner | Plan | Products | Orders | Status | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $tenant->business_name ?? 'N/A' }} | {{ $tenant->owner->name ?? 'N/A' }} | {{ ucfirst($tenant->plan ?? 'free') }} | {{ number_format($tenant->products_count ?? 0) }} | {{ number_format($tenant->orders_count ?? 0) }} | {{ ucfirst($tenant->status ?? 'active') }} | {{ $tenant->created_at?->format('M d, Y') }} | |
| No tenants found. | |||||||