Fix route for controller
Some checks are pending
tests / ci (push) Waiting to run

This commit is contained in:
myrmidex 2026-08-23 09:05:03 +02:00
parent 048def6a0b
commit 10376e3b02
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
FROM dunglas/frankenphp:latest-php8.4-alpine
FROM dunglas/frankenphp:1-php8.4-alpine
RUN apk add --no-cache \
nodejs \

2
package-lock.json generated
View file

@ -1,5 +1,5 @@
{
"name": "example",
"name": "app",
"lockfileVersion": 3,
"requires": true,
"packages": {

View file

@ -3,7 +3,7 @@
use App\Http\Controllers\AnagramController;
use Illuminate\Support\Facades\Route;
Route::view('/', AnagramController::class)->name('home');
Route::get('/', AnagramController::class)->name('home');
Route::middleware(['auth', 'verified'])->group(function () {
Route::view('dashboard', 'dashboard')->name('dashboard');