@php $timezones = [ 'America/New_York' => 'America/New_York (ET)', 'America/Chicago' => 'America/Chicago (CT)', 'America/Denver' => 'America/Denver (MT)', 'America/Los_Angeles' => 'America/Los_Angeles (PT)', ]; $currencies = [ 'USD' => 'USD — US Dollar', 'CAD' => 'CAD — Canadian Dollar', 'MXN' => 'MXN — Mexican Peso', ]; @endphp

Tenant control

Manage your business profiles

Log each LLC, base, or fleet you operate under. Switching profiles keeps compliance data scoped and clean.

Profiles on file

{{ $profiles->count() }}

Tenant roster

Business profiles

Active: {{ $activeProfile?->name ?? 'None' }}
@if ($profiles->isEmpty())
No profiles yet

Create your first business profile

Use the form on the right to add your LLC or base. Once saved, you can register vehicles and start syncing TLC data.

Launch profile form
@else
@foreach ($profiles as $profile) @php $isActive = $activeProfile && $activeProfile->is($profile); @endphp
{{ $profile->name }}
@if ($isActive) Active @endif

{{ $profile->industry ?? 'Industry not set' }} · {{ $profile->timezone ?? 'Timezone pending' }} · {{ $profile->currency ?? 'Currency pending' }}

@if ($profile->contact_email) {{ $profile->contact_email }} @endif Created {{ $profile->created_at?->format('M d, Y') }} @if ($profile->brand_color) {{ $profile->brand_color }} @endif
@if (! $isActive)
@csrf @method('PUT')
@else @endif
@csrf @method('DELETE')
@endforeach
@endif

New tenant

Create business profile

@csrf
@error('name')
{{ $message }}
@enderror
@error('industry')
{{ $message }}
@enderror
@error('timezone')
{{ $message }}
@enderror
@error('currency')
{{ $message }}
@enderror
@error('contact_email')
{{ $message }}
@enderror
@error('brand_color')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror