update project

This commit is contained in:
root
2026-05-30 01:11:35 -04:00
parent 3a0628ecc7
commit 2225f6bc72
9743 changed files with 1122482 additions and 59 deletions
+59
View File
@@ -0,0 +1,59 @@
<?php
use Illuminate\Support\Facades\Route;
use Orchestra\Workbench\Http\Controllers\Auth\AuthenticatedSessionController;
use Orchestra\Workbench\Http\Controllers\Auth\ConfirmablePasswordController;
use Orchestra\Workbench\Http\Controllers\Auth\EmailVerificationNotificationController;
use Orchestra\Workbench\Http\Controllers\Auth\EmailVerificationPromptController;
use Orchestra\Workbench\Http\Controllers\Auth\NewPasswordController;
use Orchestra\Workbench\Http\Controllers\Auth\PasswordController;
use Orchestra\Workbench\Http\Controllers\Auth\PasswordResetLinkController;
use Orchestra\Workbench\Http\Controllers\Auth\RegisteredUserController;
use Orchestra\Workbench\Http\Controllers\Auth\VerifyEmailController;
Route::middleware('guest')->group(function () {
Route::get('register', [RegisteredUserController::class, 'create'])
->name('register');
Route::post('register', [RegisteredUserController::class, 'store']);
Route::get('login', [AuthenticatedSessionController::class, 'create'])
->name('login');
Route::post('login', [AuthenticatedSessionController::class, 'store']);
Route::get('forgot-password', [PasswordResetLinkController::class, 'create'])
->name('password.request');
Route::post('forgot-password', [PasswordResetLinkController::class, 'store'])
->name('password.email');
Route::get('reset-password/{token}', [NewPasswordController::class, 'create'])
->name('password.reset');
Route::post('reset-password', [NewPasswordController::class, 'store'])
->name('password.store');
});
Route::middleware('auth')->group(function () {
Route::get('verify-email', EmailVerificationPromptController::class)
->name('verification.notice');
Route::get('verify-email/{id}/{hash}', VerifyEmailController::class)
->middleware(['signed', 'throttle:6,1'])
->name('verification.verify');
Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store'])
->middleware('throttle:6,1')
->name('verification.send');
Route::get('confirm-password', [ConfirmablePasswordController::class, 'show'])
->name('password.confirm');
Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']);
Route::put('password', [PasswordController::class, 'update'])->name('password.update');
Route::post('logout', [AuthenticatedSessionController::class, 'destroy'])
->name('logout');
});
+20
View File
@@ -0,0 +1,20 @@
<?php
use Illuminate\Support\Facades\Route;
use Orchestra\Workbench\Http\Controllers\ProfileController;
// Route::get('/', function () {
// return view('welcome');
// });
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');
});
require __DIR__.'/auth.php';
+8
View File
@@ -0,0 +1,8 @@
<?php
use Illuminate\Support\Facades\Route;
use function Orchestra\Testbench\join_paths;
Route::middleware('web')
->group(join_paths(__DIR__, 'web.php'));
+26
View File
@@ -0,0 +1,26 @@
<?php
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\Route;
use Orchestra\Workbench\Http\Controllers\WorkbenchController;
Route::group([
'prefix' => '_workbench',
'middleware' => 'web',
], static function (Router $router) {
$router->get(
'/', [WorkbenchController::class, 'start']
)->name('workbench.start');
$router->get(
'/login/{userId}/{guard?}', [WorkbenchController::class, 'login']
)->name('workbench.login');
$router->get(
'/logout/{guard?}', [WorkbenchController::class, 'logout']
)->name('workbench.logout');
$router->get(
'/user/{guard?}', [WorkbenchController::class, 'user']
)->name('workbench.user');
});