Skip to content

Commit afb9794

Browse files
committed
Add Support Page
1 parent b9c4f56 commit afb9794

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<x-layout>
2+
3+
</x-layout>

routes/web.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,9 @@
5454
})->name('docs')->where('page', '.*');
5555

5656
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

Comments
 (0)