johnnie_littleshoes
johnnie_littleshoes
FFilament
Created by johnnie_littleshoes on 1/25/2024 in #❓┊help
Resource's table actions affect RelationManager's table actions
RelationManager reuses table from Resource, overriding actions()
public function table(Table $table): Table
{
return Resource::table($table)
->actions([
// ViewAction::make() commented out
EditAction::make()
]);
}
public function table(Table $table): Table
{
return Resource::table($table)
->actions([
// ViewAction::make() commented out
EditAction::make()
]);
}
Resource table has these actions()
ViewAction::make(),
EditAction::make(),
ViewAction::make(),
EditAction::make(),
when I click on a row in the RelationManager, it triggers the View modal instead of the Edit modal. Is that expected?
2 replies
FFilament
Created by johnnie_littleshoes on 9/28/2023 in #❓┊help
/database directory moved inside /config
All files and directories inside '/database' (factories, migrations, seeders), the whole directory got moved into '/config'. Is there any reason that could've happened other than me accidentally dragging it there? 🤔
8 replies
FFilament
Created by johnnie_littleshoes on 8/2/2023 in #❓┊help
unexpected token in base.blade.php
I got Syntax error: unexpected token ':' in the base.blade.php vendor file, line 103: @filamentScripts(withCore: true). Apparently it does not affect any parts of the app, afaik. Is it something I should try to fix or just ignore it in my VSCode Problems panel?
4 replies