@extends('layouts.admin') @section('title', 'Inventory Tenants') @push('styles') @endpush @section('content')
@forelse(($tenants ?? []) as $tenant) @empty @endforelse
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') }}
@csrf @method('PATCH')
No tenants found.
@include('partials.table-pagination', ['paginator' => $tenants, 'label' => 'tenants'])
@endsection