jop00
Hide relationship manager table from Edit view
public static function getRelations(): array
{
if (request()->route()->getName() == 'filament.admin.resources.posts.view') {
return [
RelationManagers\SubmissionsRelationManager::class,
];
}else{
return [];
}
}
I've done this and it's working8 replies
New resource custom page listed on nagitaion
The goal is to have a custom page for the resource Post, I need the regular resource list view, and then use the custom page to list only the most viewed posts (with different columns).
I'm not sure if this is the way to go
9 replies