jouni.i
infolist tabs ->persistTabInQueryString()
https://github.com/filamentphp/filament/issues/7803
has anyone come up with a solution for this?
it would be more convenient to use if you could make this work
2 replies
ReplicateAction. How save relationship
->action(function (Medication $record, array $data) {
$replica = $record->duplicate();
$replica->fill($data);
if ($replica->save()) {
Notification::make()
->title('Replication complete')
->success()
->send();
}
now issue is relations saved field what i replicate2 replies
Is it possible to open a modal window with just an address
is it theoretically possible to create a url address that opens the edit modal of a certain resource..
for example https://example.test/resource/edit/{id}
2 replies