Custom page with parameter (independent from resource)

hi guys, im trying to create a custom global page that can take a record id from url for me to process, i dont want it to be bound with a resource since its independent page also im working with multitenant, this is my current code
class DetailTeamScore extends Page implements HasTable
{
use InteractsWithTable; // ✅ Enables table functionality

protected static ?string $navigationIcon = 'heroicon-o-clipboard-document-check';
protected static string $view = 'filament.pages.scoreboard.detail-team-score';
protected static ?string $slug = '/scoreboard/detail-team-score/{record}';
protected static bool $shouldRegisterNavigation = true;
public Team $record;


public function mount(int | string $record): void
{
$this->record = Team::findOrFail($record); // ✅ direct model fetch
}
class DetailTeamScore extends Page implements HasTable
{
use InteractsWithTable; // ✅ Enables table functionality

protected static ?string $navigationIcon = 'heroicon-o-clipboard-document-check';
protected static string $view = 'filament.pages.scoreboard.detail-team-score';
protected static ?string $slug = '/scoreboard/detail-team-score/{record}';
protected static bool $shouldRegisterNavigation = true;
public Team $record;


public function mount(int | string $record): void
{
$this->record = Team::findOrFail($record); // ✅ direct model fetch
}
i did register the page in the panel provider,
->pages([
Pages\Dashboard::class,
Scoreboard::class,
DetailTeamScore::class,
])
->pages([
Pages\Dashboard::class,
Scoreboard::class,
DetailTeamScore::class,
])
and then i want to get this url in another custom page table like this
->recordUrl(
fn(Model $record) =>
DetailTeamScore::getUrl(['record' => $record->id])
)
->recordUrl(
fn(Model $record) =>
DetailTeamScore::getUrl(['record' => $record->id])
)
but i got hit by this error
Illuminate\Routing\Exceptions\UrlGenerationException
Missing required parameter for [Route: filament.admin.pages..scoreboard.detail-team-score.{record}] [URI: admin/{tenant}/scoreboard/detail-team-score/{record}] [Missing parameter: record].
Illuminate\Routing\Exceptions\UrlGenerationException
Missing required parameter for [Route: filament.admin.pages..scoreboard.detail-team-score.{record}] [URI: admin/{tenant}/scoreboard/detail-team-score/{record}] [Missing parameter: record].
2 Replies
Tim van Heugten
Seems like the route is expecting a tenant parameter (which makes sense as you state you are using multi tenancy). This means you need to pass the tenant into the url or disable tenancy for the specific route (not sure how that would work for custom pages, for resources it works like described here: https://filamentphp.com/docs/3.x/panels/tenancy#disabling-tenancy-for-all-resources). What is your tenancy model? Guess it’s not Team looking at that snippet?
toeknee
toeknee5d ago
try:
DetailTeamScore::getUrl(['record' => $record->id, true, Filament::getPanel()->id, Filament::getTenant()]);
DetailTeamScore::getUrl(['record' => $record->id, true, Filament::getPanel()->id, Filament::getTenant()]);

Did you find this page helpful?