jouni.i
Was it possible to change the slideover() modal from right to left
sometimes it would be very useful to have the modal open from left to right, for example because there may be data visible in the background that needs to be entered into the modal
7 replies
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