404 NOT FOUND after initial Filament install

I am starting a new app a trying to use Filament, I did the initial install as recommanded on https://filamentphp.com/docs/3.x/panels/installation. I is a new project where I just did the basic lavarel install and a first migration with blueprint.

I do have a 404 NOT FOUND error on my local when reaching
http://127.0.0.1:8000/admin
or
http://localhost:8000/admin

My Console does not show much error

I have :
cleared my cache on my browser
php artisan cache:clear
php artisan optimize
php artisan view:clear
php artisan filament:clear-cached-components
My web.php is empty


app/Providers/AppServiceProvider.php
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     */
    public function register(): void
    {
        //
    }

    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        Modell::unguard();
    }
}


app/Providers/Filament/AdminPanelProvider.php
will follow under

What am I missing to get the Filament Magic ? Can someone help ?

Thank you for your support
Was this page helpful?