@extends('layouts.app') @section('title', 'Upgrade Plan') @section('page-title', 'Choose Your Plan') @section('breadcrumb', 'Upgrade to unlock all features') @section('content')
{{-- Billing toggle --}}
{{-- Current plan badge --}}
Current plan: {{ $currentPlan }} @if(auth()->user()->tenant->isOnTrial()) Trial expires {{ auth()->user()->tenant->trial_ends_at->diffForHumans() }} @endif
{{-- Plan cards --}}
@forelse($plans as $plan) @empty

No plans configured yet. Contact support.

@endforelse
{{-- Features comparison table --}}

What's included in every plan

@foreach([ ['icon'=>'🧾','title'=>'GST Invoices','desc'=>'GSTR-1, GSTR-3B ready'], ['icon'=>'📊','title'=>'P&L & Balance Sheet','desc'=>'Full accounting reports'], ['icon'=>'👥','title'=>'Customers & Products','desc'=>'Unlimited records'], ['icon'=>'🏪','title'=>'Online Storefront','desc'=>'Public ordering page'], ['icon'=>'💸','title'=>'Expense Tracking','desc'=>'All expense types'], ['icon'=>'👔','title'=>'Employee & Salary','desc'=>'With payslip PDF'], ['icon'=>'📱','title'=>'WhatsApp Invoices','desc'=>'Auto-send on order'], ['icon'=>'🔌','title'=>'REST API','desc'=>'Mobile app ready'], ] as $f)
{{ $f['icon'] }}

{{ $f['title'] }}

{{ $f['desc'] }}

@endforeach
@push('scripts') @endpush @endsection