@extends('dashboard.layouts.master') @section('title', 'Manage Business Subscription | Admin Panel') @section('content')

Override Subscription Settings

Manually extend, suspend, or adjust {{ $businessProfile->business_name ?? 'Business' }}'s plan.
@csrf
@if($plan) Pricing Model: {{ ucfirst(str_replace('_', ' ', $plan->pricing_model)) }} @endif
The system detected {{ $actualBranches }} live branches. You can override this for billing purposes.
Adjusting this date will grant them a manual grace-period.
@if($plan && $plan->pricing_model == 'per_branch')
Base Price: {{ config('currency_symbol', '$') }}{{ number_format($plan->price, 2) }}
Price per Branch: {{ config('currency_symbol', '$') }}{{ number_format($plan->price_per_branch, 2) }} x {{ $actualBranches }}

Estimated Total: {{ config('currency_symbol', '$') }}0.00
@endif
Setting this will log a manual payment entry in the logs.
Cancel
@endsection @push('after-scripts') @endpush