.robertogarces
.robertogarces
FFilament
Created by .robertogarces on 4/5/2023 in #❓┊help
Table Action with Custom Form opening new tab
this opens the pdf in a new tab but doesn't fire the modal before
12 replies
FFilament
Created by .robertogarces on 4/5/2023 in #❓┊help
Table Action with Custom Form opening new tab
Action::make('pdf')
->label('PDF')
->form([
DateTimePicker::make('fecha_inicio')
->label('Fecha y hora de entrada')
->displayFormat('d/m/Y H:i')
->withoutSeconds(),
DateTimePicker::make('fecha_hasta')
->label('Fecha y hora de salida')
->displayFormat('d/m/Y H:i')
->withoutSeconds()
->hidden(),
DateTimePicker::make('fecha_desde')
->label('Fecha y hora de entrada')
->displayFormat('d/m/Y H:i')
->withoutSeconds()
->hidden()
])
->url(fn (Servicio $record, array $data) => route('crearPDF', $record, $data))
->openUrlInNewTab(),
Action::make('pdf')
->label('PDF')
->form([
DateTimePicker::make('fecha_inicio')
->label('Fecha y hora de entrada')
->displayFormat('d/m/Y H:i')
->withoutSeconds(),
DateTimePicker::make('fecha_hasta')
->label('Fecha y hora de salida')
->displayFormat('d/m/Y H:i')
->withoutSeconds()
->hidden(),
DateTimePicker::make('fecha_desde')
->label('Fecha y hora de entrada')
->displayFormat('d/m/Y H:i')
->withoutSeconds()
->hidden()
])
->url(fn (Servicio $record, array $data) => route('crearPDF', $record, $data))
->openUrlInNewTab(),
12 replies
FFilament
Created by .robertogarces on 4/5/2023 in #❓┊help
Table Action with Custom Form opening new tab
yes, but if i use url the form modal doesn't work
12 replies