14-04-2026

This commit is contained in:
Kevin Adametz 2026-04-14 18:07:45 +02:00
parent f58c709945
commit 0f82fea88a
72 changed files with 7414 additions and 148 deletions

View file

@ -390,6 +390,21 @@ Route::domain(config('app.pre_url_crm').config('app.domain').config('app.tld_car
Route::get('/admin/revenue', 'RevenueReportController@index')->name('admin_revenue');
Route::post('/admin/revenue/export', 'RevenueReportController@export')->name('admin_revenue_export');
// Payment Dashboard / Monitor
Route::prefix('/admin/payment-dashboard')->name('admin.payment-dashboard.')->group(function () {
Route::get('/', 'Admin\PaymentDashboardController@index')->name('index');
Route::get('/management', 'Admin\PaymentDashboardController@management')->name('management');
Route::get('/transactions', 'Admin\PaymentDashboardController@transactions')->name('transactions');
Route::get('/payments', 'Admin\PaymentDashboardController@payments')->name('payments');
Route::get('/abandoned', 'Admin\PaymentDashboardController@abandoned')->name('abandoned');
Route::get('/funnel', 'Admin\PaymentDashboardController@funnel')->name('funnel');
Route::get('/logs', 'Admin\PaymentDashboardController@logs')->name('logs');
Route::post('/', 'Admin\PaymentDashboardController@store')->name('store');
Route::get('/{incident}', 'Admin\PaymentDashboardController@show')->name('show');
Route::post('/{incident}/activity', 'Admin\PaymentDashboardController@addActivity')->name('activity.store');
Route::patch('/{incident}/status', 'Admin\PaymentDashboardController@updateStatus')->name('status.update');
});
// business
Route::get('/admin/business/show', 'BusinessController@show')->name('admin_business_show');
Route::get('/admin/business/structure', 'BusinessController@structure')->name('admin_business_structure');