We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c4f56 commit afb9794Copy full SHA for afb9794
resources/views/support/index.blade.php
@@ -0,0 +1,3 @@
1
+<x-layout>
2
+
3
+</x-layout>
routes/web.php
@@ -54,3 +54,9 @@
54
})->name('docs')->where('page', '.*');
55
56
Route::get('/order/{checkoutSessionId}', App\Livewire\OrderSuccess::class)->name('order.success');
57
58
+Route::prefix('/support')->group(function () {
59
+ Route::get('/', function () {
60
+ return view('support.index');
61
+ })->name('support.index');
62
+});
0 commit comments