Mirakel
Is there a way to perform an action then open a new tab afterwards?
Actions\Action::make('preview')
->action(function ($record, Component $livewire) {
// Update or create the preview record
$preview = $record->preview()->updateOrCreate(
['id' => $record->preview->id ?? null],
['data' => $this->form->getState()]
);
//Open a preview url in a new tab }),
//Open a preview url in a new tab }),
2 replies
How can I pass an owner to a create page?
I have a channel model and post model, and when I am inside the Channel Infolist Page, I would like the create button of that relation manager pass over the channel model
I am using a wizard on the post creation, and when an owner is detected, I would like to omit that step
thanks!
4 replies