Fix payment form validation, styling and blog header visibility
This commit is contained in:
@@ -100,6 +100,11 @@ Route::prefix('admin/api')->middleware(['auth', \App\Http\Middleware\SuperAdminM
|
||||
// Products & Services
|
||||
Route::get('/urun-hizmet/{slug}', [\App\Http\Controllers\ProductController::class, 'show'])->name('products.show');
|
||||
|
||||
// Payment Process
|
||||
Route::post('/payment/process', [\App\Http\Controllers\PaymentController::class, 'process'])->name('payment.process');
|
||||
Route::any('/payment/success', [\App\Http\Controllers\PaymentController::class, 'success'])->name('payment.success');
|
||||
Route::any('/payment/fail', [\App\Http\Controllers\PaymentController::class, 'fail'])->name('payment.fail');
|
||||
|
||||
// Logo Preview
|
||||
Route::get('/logo-preview', function (Illuminate\Http\Request $request) {
|
||||
$path = $request->query('path');
|
||||
|
||||
Reference in New Issue
Block a user