Modal window
I have this code that allows me to open a view, but how can I make it appear in a modal view?
Thank you so much
Forms\Components\Actions::make([ Forms\Components\Actions\Action::make('view')->label('Detalles del Inmueble')
->url(fn ($record): string => InmuebleResource::getUrl('view', ['record' => $record]))
]),
1 Reply
->form(/* get your form schema from a static method */)