adding country flags, html meta stuff, web routes file, js components

This commit is contained in:
2022-05-04 13:02:19 -06:00
parent de53c3c882
commit bafa9dba26
24 changed files with 1845 additions and 0 deletions

22
src/routes/web.php Normal file
View File

@ -0,0 +1,22 @@
<?php
//...
use App\Http\Controllers\UserProfileController;
use Illuminate\Support\Facades\Route;
//...
Route::middleware([
'auth:sanctum',
config('jetstream.auth_session'),
'verified',
])->group(function () {
$authMiddleware = config('jetstream.guard')
? 'auth:'.config('jetstream.guard')
: 'auth';
Route::group(['middleware' => [$authMiddleware, 'verified']], function () {
// User & Profile...
Route::get('/user/profile', [UserProfileController::class, 'show'])
->name('profile.show');
});
});