jop00
jop00
FFilament
Created by jop00 on 11/25/2023 in #❓┊help
SimplePage form not rendering submit button
Thanks!
4 replies
FFilament
Created by jop00 on 9/20/2023 in #❓┊help
Group table by year
Could someone test if groupQueryUsing() is actually working?
7 replies
FFilament
Created by jop00 on 9/20/2023 in #❓┊help
Group table by year
This doesn't change the default grouping by day
7 replies
FFilament
Created by jop00 on 9/20/2023 in #❓┊help
Group table by year
->groupQueryUsing(fn (Builder $query) => $query->groupBy(DB::raw("YEAR(deadline)")))
->groupQueryUsing(fn (Builder $query) => $query->groupBy(DB::raw("YEAR(deadline)")))
7 replies
FFilament
Created by jop00 on 9/20/2023 in #❓┊help
Group table by year
I've tried ->groupQueryUsing() but doesn't change the default grouping
7 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
I updated the code and now it's working:
Select::make('producers')
->relationship('producers')
...
Select::make('producers')
->relationship('producers')
...
Select::make('producers') ->relationship('producers', 'name')
...
Select::make('producers') ->relationship('producers', 'name')
...
11 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
I get the model Producer
11 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
If I remove the creationOptionUsing(): Undefined property: stdClass::$
11 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
do I need to send a dispatch event to upload the form?
11 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
with this I don't get the error but the select field is not filled with the new record
11 replies
FFilament
Created by jop00 on 9/15/2023 in #❓┊help
Select field not showing new created record using modal
It's a belongsToMany relationship
11 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
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 working
8 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
Hide relationship manager table from Edit view
Thanks
8 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
Hide relationship manager table from Edit view
Only on View. It's a very big form and it won't be necessary to have the realtion table. I just want to know if it's a way to hide the relation manager table.
8 replies
FFilament
Created by jop00 on 9/7/2023 in #❓┊help
New resource custom page listed on nagitaion
I've tried to access via URL before with no luck, now it's working.
9 replies
FFilament
Created by jop00 on 9/7/2023 in #❓┊help
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
FFilament
Created by jop00 on 9/7/2023 in #❓┊help
New resource custom page listed on nagitaion
And how I can access to that page?
9 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
Reusing tables and forms from Resources
great, thanks!
13 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
Reusing tables and forms from Resources
I mean using the same form code used in the panel resources as an independent component to anywhere of the non admin panel part without duplicate all the form schema and everything.
13 replies
FFilament
Created by jop00 on 9/6/2023 in #❓┊help
Reusing tables and forms from Resources
Is duplicate all the table code from Resource.php to a livewire component the only way?
13 replies