ddoddsr
ddoddsr
FFilament
Created by Alexandre on 9/10/2024 in #❓┊help
TextInputColumn (date) submit too fast
Did you find an inline solution or did you make a modal? I'd like to see how you did a model datepicker.
9 replies
FFilament
Created by ericmp on 11/1/2024 in #❓┊help
Keep table filters on url on relation manager
return $table
->persistFiltersInSession()
return $table
->persistFiltersInSession()
12 replies
FFilament
Created by ericmp on 11/1/2024 in #❓┊help
Keep table filters on url on relation manager
If youwant to persist the filters so that they are the same when you come back...
12 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
->after(function ($record) {
$this->replaceMountedTableAction('edit', $record->id);
})
->after(function ($record) {
$this->replaceMountedTableAction('edit', $record->id);
})
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
Turns out it is easy once I know to add this to my CreateAction
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
for example my custom create Action saves a record but the $context did not change so the create button remains visible with ->visible(fn (string $context): bool => $context === 'create') on the Action.
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
but for the CreateAction it would be best if I could use built-in to make sure I get all the nessasary parts
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
Exactly for the Save Action
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
And make a Save Button that saves progress without closing modal.
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
I would like to keep the modal open refreshed with any data from the ->mutateFormDataUsing of the CreateAction
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
Which opens a modal that has a create button. When tht button is used the record is created and the modal is closed
14 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
In the a RelationManager List I have a CreateAction::make()
14 replies
FFilament
Created by ddoddsr on 10/3/2024 in #❓┊help
export successful no notification
bump?
3 replies
FFilament
Created by Matthew on 9/21/2024 in #❓┊help
getEloquentQuery() in the RelationManager
This will work. ```return $table ->modifyQueryUsing(fn (Builder $query) => $query->where('is_active', true)) ->columns([ // ... ]);
6 replies
FFilament
Created by ddoddsr on 9/19/2024 in #❓┊help
modifyQueryUsing ->join changes $record->id
Thanks that worked!
6 replies
FFilament
Created by ddoddsr on 9/19/2024 in #❓┊help
modifyQueryUsing ->join changes $record->id
This is very promising . The vars $client_id,$csm_id, $am_id are Undefined in the if statements that contain the where, whereHas . I just had to change to ->modifyQueryUsing(function(Builder $query) use ($client_id,$csm_id, $am_id) { adding the use and change $query->whereHas('users', to $query->whereHas('client', to fit my models. (for other readers benefit).
6 replies
FFilament
Created by ddoddsr on 9/4/2024 in #❓┊help
npm run build error, run dev not working
Yes it works in plain Chrome. A upgrade of Brave lost that config... thanks so much
25 replies
FFilament
Created by ddoddsr on 9/4/2024 in #❓┊help
npm run build error, run dev not working
BrveBrowser!
25 replies
FFilament
Created by ddoddsr on 9/4/2024 in #❓┊help
npm run build error, run dev not working
new to me.
25 replies