{{ __('Select Your Package') }}

{{ __('Choose a plan that matches your current fleet size and scale up whenever you need more drivers or trucks.') }}

{{ __('Choose a package that fits your needs. You can upgrade, downgrade, or change your package at any time.') }}

@forelse ($packages as $package)

{{ $package->name }}

${{ number_format($package->price, 0) }} /{{ __('month') }}
@if ($package->description)

{{ $package->description }}

@endif
{{ $package->driver_limit }} {{ __('Drivers') }}
{{ $package->truck_limit }} {{ __('Trucks') }}
@if ($package->features && count($package->features) > 0)

{{ __('Features') }}

    @foreach ($package->features as $feature) @if (is_array($feature))
  • {{ $feature['key'] ?? '' }}: {{ $feature['value'] ?? '' }}
  • @endif @endforeach
@endif @if ($activeSubscription && $activeSubscription->package_id === $package->id)
{{ __('Current Package') }}
@endif @if ($activeSubscription && $activeSubscription->package_id === $package->id) @else
@csrf @unless ($activeSubscription)
@endunless
@endif
@empty

{{ __('No packages available') }}

@endforelse

{{ __('How it Works') }}

  1. {{ __('Select the package that best suits your needs') }}
  2. {{ __('You will be redirected to payment') }}
  3. {{ __('Choose your preferred payment method') }}
  4. {{ __('Complete the payment') }}
  5. {{ __('Your subscription will be activated immediately') }}