laravel + vue で作成した hello world に breeze で認証システムを実装します。
とても簡単に実装できるのですが、これに関しても chatGPT は最初はおかしなことを提示しました。 最近、chatGPT のコードがひどいのでちょっと批判したせいで嫌がらせされているんでしょうか。
実際には一瞬で終わります。
composer require laravel/breeze --devphp artisan breeze:install vuenpm installnpm run dev
以下のような web.php が自動生成されます。
<?php
use App\Http\Controllers\ProfileController;use Illuminate\Foundation\Application;use Illuminate\Support\Facades\Route;use Inertia\Inertia;
Route::get('/', function () { return Inertia::render('Welcome', [ 'canLogin' => Route::has('login'), 'canRegister' => Route::has('register'), 'laravelVersion' => Application::VERSION, 'phpVersion' => PHP_VERSION, ]);});
Route::get('/dashboard', function () { return Inertia::render('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';
起動。
cd ~/my-laravel-vue
php artisan config:clearphp artisan cache:clearphp artisan view:clearphp artisan route:clearnpm run build
php artisan serve