laravel + vue に breeze

(2025-02-19)

laravel + vue で作成した hello world に breeze で認証システムを実装します。

とても簡単に実装できるのですが、これに関しても chatGPT は最初はおかしなことを提示しました。 最近、chatGPT のコードがひどいのでちょっと批判したせいで嫌がらせされているんでしょうか。

実際には一瞬で終わります。

breeze インストール

composer require laravel/breeze --dev
php artisan breeze:install vue
npm install
npm run dev

web.php

以下のような 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:clear
php artisan cache:clear
php artisan view:clear
php artisan route:clear
npm run build
php artisan serve

http://127.0.0.1:8000/