HeyWeb
HeyWeb
FFilament
Created by HeyWeb on 7/13/2024 in #❓┊help
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])) ]),
3 replies
FFilament
Created by HeyWeb on 5/14/2024 in #❓┊help
getNavigationBadge()
No description
20 replies
FFilament
Created by HeyWeb on 5/3/2024 in #❓┊help
Modal action
No description
4 replies
FFilament
Created by HeyWeb on 5/1/2024 in #❓┊help
Update value
When I update the registration field it does not update the owner field, it returns a blank value Forms\Components\Select::make('vehiculos_id')->required()->label('Matricula') ->searchable() ->relationship('vehiculos','matricula') ->afterStateUpdated(function (Set $set) { $set('partes.vehiculos_id', null); })
->preload()->live(), Forms\Components\TextInput::make('partes.vehiculos_id')->label('Propietario') ->formatStateUsing(function ($state, Parte $partes) { if (!empty($partes->vehiculos->clientes)) { return $partes->vehiculos->clientes->apellidos . ', ' . $partes->vehiculos->clientes->nombre; } else { return null; } }) ->disabled()->live(),
10 replies
FFilament
Created by HeyWeb on 4/30/2024 in #❓┊help
FileUpload It doesn't preview
No description
18 replies
FFilament
Created by HeyWeb on 4/27/2024 in #❓┊help
validationMessages not work
No description
7 replies