2026-03-29 22:24:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\App;
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
use App\Models\Account;
|
2026-04-14 21:22:36 +00:00
|
|
|
use App\Models\Plan;
|
2026-03-29 22:24:28 +00:00
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
|
use Illuminate\Http\Request;
|
2026-05-03 20:26:55 +00:00
|
|
|
use Illuminate\Support\Facades\Gate;
|
2026-03-29 22:24:28 +00:00
|
|
|
use Inertia\Inertia;
|
|
|
|
|
use Inertia\Response;
|
|
|
|
|
use Symfony\Component\HttpFoundation\Response as SymfonyResponse;
|
2026-05-12 16:38:37 +00:00
|
|
|
use Throwable;
|
2026-03-29 22:24:28 +00:00
|
|
|
|
|
|
|
|
class BillingController extends Controller
|
|
|
|
|
{
|
|
|
|
|
public function subscribe(Request $request): Response|RedirectResponse
|
|
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account = $request->user()->account;
|
2026-03-31 03:40:18 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
if ($account && $account->hasActiveSubscription()) {
|
2026-03-29 22:24:28 +00:00
|
|
|
return redirect()->route('app.billing.index');
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-21 13:02:38 +00:00
|
|
|
$requiresCardForTrial = (bool) config('trypost.billing.require_card_for_trial', true);
|
|
|
|
|
|
2026-03-29 22:24:28 +00:00
|
|
|
return Inertia::render('billing/Subscribe', [
|
2026-04-14 21:22:36 +00:00
|
|
|
'plans' => Plan::active()->orderBy('sort')->get(),
|
2026-05-21 13:02:38 +00:00
|
|
|
'trialDays' => $requiresCardForTrial ? config('cashier.trial_days') : null,
|
2026-03-29 22:24:28 +00:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 12:46:18 +00:00
|
|
|
public function checkout(Request $request, Plan $plan): SymfonyResponse|RedirectResponse
|
2026-03-29 22:24:28 +00:00
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
$account = $user->account;
|
2026-03-31 03:40:18 +00:00
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
abort_unless($user->isAccountOwner(), SymfonyResponse::HTTP_FORBIDDEN);
|
|
|
|
|
|
|
|
|
|
$request->validate([
|
|
|
|
|
'price_id' => ['required', 'string'],
|
|
|
|
|
]);
|
2026-03-29 22:24:28 +00:00
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
$priceId = $request->input('price_id');
|
2026-03-29 22:24:28 +00:00
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
abort_unless(
|
|
|
|
|
$priceId === $plan->stripe_monthly_price_id || $priceId === $plan->stripe_yearly_price_id,
|
|
|
|
|
422,
|
|
|
|
|
'Invalid price for this plan',
|
|
|
|
|
);
|
2026-03-31 03:40:18 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account->createOrGetStripeCustomer([
|
|
|
|
|
'email' => $account->stripeEmail(),
|
|
|
|
|
'name' => $account->stripeName(),
|
2026-04-14 21:22:36 +00:00
|
|
|
]);
|
2026-03-29 22:24:28 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$subscription = $account->newSubscription(Account::SUBSCRIPTION_NAME, $priceId)
|
2026-05-21 13:02:38 +00:00
|
|
|
->allowPromotionCodes();
|
|
|
|
|
|
|
|
|
|
if ((bool) config('trypost.billing.require_card_for_trial', true)) {
|
|
|
|
|
$subscription->trialDays(config('cashier.trial_days'));
|
|
|
|
|
}
|
2026-03-29 22:24:28 +00:00
|
|
|
|
|
|
|
|
$checkoutSession = $subscription->checkout([
|
2026-05-12 16:31:00 +00:00
|
|
|
'success_url' => route('app.billing.processing').'?session_id={CHECKOUT_SESSION_ID}',
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
'cancel_url' => route('app.subscribe'),
|
2026-03-29 22:24:28 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return Inertia::location($checkoutSession->url);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 12:46:18 +00:00
|
|
|
public function processing(Request $request): Response|RedirectResponse
|
2026-03-29 22:24:28 +00:00
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account = $request->user()->account;
|
2026-05-12 16:31:00 +00:00
|
|
|
$sessionId = $request->query('session_id');
|
2026-03-29 22:24:28 +00:00
|
|
|
|
|
|
|
|
return Inertia::render('billing/Processing', [
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
'subscriptionActive' => $account && $account->subscribed(Account::SUBSCRIPTION_NAME),
|
2026-05-12 16:31:00 +00:00
|
|
|
'conversion' => is_string($sessionId) && $sessionId !== '' && $account?->stripe_id
|
|
|
|
|
? fn () => $this->buildConversionData($account, $sessionId)
|
|
|
|
|
: null,
|
2026-03-29 22:24:28 +00:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-12 16:31:00 +00:00
|
|
|
/**
|
|
|
|
|
* @return array{value: float, currency: string, transaction_id: string}|null
|
|
|
|
|
*/
|
|
|
|
|
private function buildConversionData(Account $account, string $sessionId): ?array
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
$session = $account->stripe()->checkout->sessions->retrieve(
|
|
|
|
|
$sessionId,
|
|
|
|
|
['expand' => ['line_items.data.price']],
|
|
|
|
|
);
|
2026-05-12 16:38:37 +00:00
|
|
|
} catch (Throwable) {
|
2026-05-12 16:31:00 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data_get($session, 'customer') !== $account->stripe_id) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$unitAmount = data_get($session, 'line_items.data.0.price.unit_amount');
|
|
|
|
|
$currency = data_get($session, 'line_items.data.0.price.currency');
|
|
|
|
|
$transactionId = data_get($session, 'id');
|
|
|
|
|
|
|
|
|
|
if (! is_int($unitAmount) || ! is_string($currency) || ! is_string($transactionId)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'value' => $unitAmount / 100,
|
|
|
|
|
'currency' => strtoupper($currency),
|
|
|
|
|
'transaction_id' => $transactionId,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 12:46:18 +00:00
|
|
|
public function index(Request $request): Response|RedirectResponse
|
2026-03-29 22:24:28 +00:00
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account = $request->user()->account;
|
2026-03-31 03:40:18 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
abort_unless($request->user()->isAccountOwner(), SymfonyResponse::HTTP_FORBIDDEN);
|
2026-04-14 21:22:36 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$subscription = $account->subscription(Account::SUBSCRIPTION_NAME);
|
2026-04-14 21:22:36 +00:00
|
|
|
|
2026-05-03 16:44:13 +00:00
|
|
|
return Inertia::render('settings/account/Billing', [
|
2026-04-15 01:22:04 +00:00
|
|
|
'hasSubscription' => $account->subscribed(Account::SUBSCRIPTION_NAME),
|
2026-05-14 22:46:34 +00:00
|
|
|
'onTrial' => $account->isOnTrial(),
|
2026-05-14 22:55:28 +00:00
|
|
|
'trialEndsAt' => $account->activeTrialEndsAt(),
|
2026-04-14 21:22:36 +00:00
|
|
|
'subscription' => $subscription?->only([
|
|
|
|
|
'stripe_status',
|
|
|
|
|
'ends_at',
|
|
|
|
|
]),
|
2026-04-15 01:22:04 +00:00
|
|
|
'plan' => $account->plan,
|
2026-04-14 21:22:36 +00:00
|
|
|
'plans' => Plan::active()->orderBy('sort')->get(),
|
2026-04-15 01:22:04 +00:00
|
|
|
'invoices' => $account->invoices()->map(fn ($invoice) => [
|
2026-04-14 21:22:36 +00:00
|
|
|
'id' => $invoice->id,
|
2026-05-03 20:26:55 +00:00
|
|
|
'date' => $invoice->date(),
|
2026-04-14 21:22:36 +00:00
|
|
|
'total' => $invoice->total(),
|
|
|
|
|
'status' => $invoice->status,
|
|
|
|
|
'invoice_pdf' => $invoice->invoice_pdf,
|
|
|
|
|
]),
|
refactor: redesign billing settings + upgrade dialog with indies aesthetic
- Billing settings page restructured around the design system: dropped
the 280px-label / 1fr-content split for stacked HeadingSmall sections;
current plan rendered as a hero card with display-font name, price,
amber sticker tile, and an inline primary "Change plan" CTA; payment
method consolidated into a single sticker row with a violet card-icon
tile and the manage CTA on the same line; empty payment-method state
handled. Invoices keep the sticker-row treatment.
- Upgrade dialog mirrors Subscribe.vue end-to-end: planTones backgrounds
per slug, ⭐ POPULAR / CURRENT badges absolute-positioned, ink-bordered
rounded-full CTA pill, sticker check icons, "Everything in {plan}"
copy, IconInfoCircle tooltip on credits, yearly/monthly toggle pill
with rotating amber save-months badge. While a request is in flight
every plan button is disabled and the active one shows IconLoader2
spinner.
- Account model gains `displayablePaymentMethod()` returning the
card array used by the UI. Resolves the customer-level default first,
falls back to the first attached payment method (Stripe Checkout trials
anchor the card to the subscription rather than the customer, so the
customer-level lookup returns null even when a card exists).
- i18n: added `billing.subscription.expires_on` and `no_payment_method`
in en/pt-BR/es.
2026-05-06 20:00:25 +00:00
|
|
|
'defaultPaymentMethod' => $account->displayablePaymentMethod(),
|
2026-04-14 21:22:36 +00:00
|
|
|
]);
|
2026-03-29 22:24:28 +00:00
|
|
|
}
|
2026-03-31 03:40:18 +00:00
|
|
|
|
2026-04-14 21:22:36 +00:00
|
|
|
public function swap(Request $request, Plan $plan): RedirectResponse
|
2026-03-31 03:40:18 +00:00
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account = $request->user()->account;
|
2026-03-31 03:40:18 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
abort_unless($request->user()->isAccountOwner(), SymfonyResponse::HTTP_FORBIDDEN);
|
|
|
|
|
abort_unless($account->subscribed(Account::SUBSCRIPTION_NAME), 422, 'No active subscription');
|
2026-04-14 21:22:36 +00:00
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
$request->validate([
|
|
|
|
|
'price_id' => ['required', 'string'],
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$priceId = $request->input('price_id');
|
2026-05-03 19:52:28 +00:00
|
|
|
$subscription = $account->subscription(Account::SUBSCRIPTION_NAME);
|
2026-04-14 21:22:36 +00:00
|
|
|
|
feat: redesign billing, onboarding, sidebar, and settings architecture
- Sidebar reorganized: Workspace group (connections, hashtags, labels,
API keys, settings) and Account group (settings, usage, billing)
- Account group only visible to owner and hidden in self-hosted mode
- Onboarding simplified: role -> account (connect socials) -> completed
-> redirect to /subscribe. Removed Subscription setup step.
- Subscribe page redesigned with 4 plan cards, monthly/yearly toggle,
trial info, and per-plan features list
- Billing page redesigned following Sendkit layout (sections with
sidebar labels)
- Processing page uses usePoll with immediate watch for subscription
activation
- Cancel URL redirects directly to /subscribe
- Account settings page with name and billing_email (syncs with Stripe)
- Usage page with ring meters for all plan limits
- Settings layout tabs only for user pages (profile, password,
notifications). Workspace/API keys/billing are standalone pages.
- GoogleAuthButton extracted as reusable component
- WorkspaceRole TypeScript enum for type-safe role checks in frontend
- Trial period changed to 7 days
- Fixed onboarding loop when user confirms email
- All 1101 tests passing
2026-04-15 03:33:38 +00:00
|
|
|
abort_unless(
|
|
|
|
|
$priceId === $plan->stripe_monthly_price_id || $priceId === $plan->stripe_yearly_price_id,
|
|
|
|
|
422,
|
|
|
|
|
'Invalid price for this plan',
|
|
|
|
|
);
|
2026-04-14 21:22:36 +00:00
|
|
|
|
2026-05-03 20:26:55 +00:00
|
|
|
$authorization = Gate::inspect('swapPlan', [$account, $plan]);
|
|
|
|
|
|
|
|
|
|
if ($authorization->denied()) {
|
|
|
|
|
return back()->with('flash.error', $authorization->message());
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-03 19:52:28 +00:00
|
|
|
$subscription->swap($priceId);
|
2026-04-15 01:22:04 +00:00
|
|
|
$account->update(['plan_id' => $plan->id]);
|
2026-05-07 14:08:30 +00:00
|
|
|
$account->forgetPlanFeatureCache();
|
2026-05-07 13:59:48 +00:00
|
|
|
|
2026-05-03 19:52:28 +00:00
|
|
|
return redirect()->route('app.billing.index')
|
|
|
|
|
->with('flash.success', __('billing.flash.plan_changed', ['plan' => $plan->name]));
|
2026-04-14 21:22:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function portal(Request $request): RedirectResponse
|
|
|
|
|
{
|
2026-04-15 12:46:18 +00:00
|
|
|
if (config('trypost.self_hosted')) {
|
|
|
|
|
return redirect()->route('app.calendar');
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
$account = $request->user()->account;
|
2026-04-14 21:22:36 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
abort_unless($request->user()->isAccountOwner(), SymfonyResponse::HTTP_FORBIDDEN);
|
2026-04-14 21:22:36 +00:00
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
return $account->redirectToBillingPortal(
|
2026-04-14 21:22:36 +00:00
|
|
|
route('app.billing.index')
|
|
|
|
|
);
|
2026-03-31 03:40:18 +00:00
|
|
|
}
|
2026-03-29 22:24:28 +00:00
|
|
|
}
|