dashboard not registering in links

as-per the guide it shows creating a new file in Filament\Pages\Dashboard.php and inserting:
<?php

namespace App\Filament\Pages;

use Filament\Pages\Dashboard\Concerns\HasFiltersForm;

class Dashboard extends \Filament\Pages\Dashboard
{
//
use HasFiltersForm;
}
<?php

namespace App\Filament\Pages;

use Filament\Pages\Dashboard\Concerns\HasFiltersForm;

class Dashboard extends \Filament\Pages\Dashboard
{
//
use HasFiltersForm;
}
second it shows removing it from your Layout Provider which i've done both but i cant see to get to this blank dashboard.
No description
No description
3 Replies
Mocus
MocusOP5d ago
im expecting 'DashBoard' to appear in the links but it's not there?
Matthew
Matthew5d ago
Have you tried adding Dashboard in:
->pages([
Dashboard::class
])
->pages([
Dashboard::class
])
Dashboard is a page after all
Mocus
MocusOP5d ago
i could probably do that but it just doesnt mention it also looking at a few youtube videos again no one shows doing this .. weird OK i figured it out .. looks liie mutliple providers causes slight confusion its looking for them in for example i call a panel User it'll look under User/Pages >.<

Did you find this page helpful?