@extends('layouts.app') @section('title', 'My Businesses') @push('styles') @endpush @section('content') @if(isset($tenants) && $tenants->count())
@foreach($tenants as $tenant)
{{ strtoupper(substr($tenant->business_name ?? $tenant->name, 0, 1)) }}
{{ $tenant->business_name ?? $tenant->name }}
/{{ $tenant->slug }}
Plan {{ ucfirst($tenant->plan ?? 'free') }}
Status {{ ucfirst($tenant->status ?? 'active') }}
Products {{ $tenant->products_count ?? 0 }} / {{ $tenant->max_products ?? 50 }}
Created {{ $tenant->created_at ? $tenant->created_at->format('M d, Y') : '—' }}
@endforeach
@else

No businesses yet

Create your first business to start managing inventory.

Create Business
@endif @endsection