2024-04-17 10:29:25 +03:00
|
|
|
<?php
|
|
|
|
|
2024-06-19 13:42:36 +03:00
|
|
|
use App\Http\Controllers\ProfileController;
|
2024-04-17 10:29:25 +03:00
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
return view('welcome');
|
|
|
|
});
|
2024-06-19 13:42:36 +03:00
|
|
|
|
|
|
|
Route::get('/dashboard', function () {
|
|
|
|
return view('dashboard');
|
|
|
|
})->middleware(['auth', 'verified'])->name('dashboard');
|
|
|
|
|
|
|
|
Route::middleware('auth')->group(function () {
|
|
|
|
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
|
|
|
|
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
|
|
|
|
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
|
|
|
|
});
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
require __DIR__ . '/auth.php';
|