Fix PayPal billing flow and mobile admin UX
This commit is contained in:
@@ -461,6 +461,8 @@ Route::prefix('v1')->name('api.v1.')->group(function () {
|
||||
Route::prefix('billing')->middleware('tenant.admin')->group(function () {
|
||||
Route::get('transactions', [TenantBillingController::class, 'transactions'])
|
||||
->name('tenant.billing.transactions');
|
||||
Route::get('transactions/{purchase}/receipt', [TenantBillingController::class, 'receipt'])
|
||||
->name('tenant.billing.transactions.receipt');
|
||||
Route::get('addons', [TenantBillingController::class, 'addons'])
|
||||
->name('tenant.billing.addons');
|
||||
Route::post('portal', [TenantBillingController::class, 'portal'])
|
||||
@@ -469,6 +471,7 @@ Route::prefix('v1')->name('api.v1.')->group(function () {
|
||||
|
||||
Route::prefix('tenant/billing')->middleware('tenant.admin')->group(function () {
|
||||
Route::get('transactions', [TenantBillingController::class, 'transactions']);
|
||||
Route::get('transactions/{purchase}/receipt', [TenantBillingController::class, 'receipt']);
|
||||
Route::get('addons', [TenantBillingController::class, 'addons']);
|
||||
Route::post('portal', [TenantBillingController::class, 'portal']);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user