adryjan
adryjan
FFilament
Created by adryjan on 5/20/2024 in #❓┊help
Authenticate API Service
Hi, how to send request to private api endpoint ?
7 replies
FFilament
Created by adryjan on 5/10/2024 in #❓┊help
leave the modal open after the action
Is it possible to leave the modal open after performing the action? I'm building a chat for orders and this would be a better solution. ->actions([ Action::make('Order chat') ->label('') ->icon('heroicon-o-chat-bubble-left-ellipsis') ->form([ TextInput::make('message') ->label(__('Message')), ]) ->modalContent(view('components.order-chat', ['messages'=>OrderResource::$messages])) ->action(function (array $data, Order $record) { $chatMessage = new OrderChat(); $chatMessage->id_order = $record->id; $chatMessage->id_user = auth()->id(); $chatMessage->content = $data['message']; $chatMessage->save(); }) ])
4 replies
FFilament
Created by adryjan on 11/23/2023 in #❓┊help
Action on custom page doesnt work
No description
2 replies