Nikos Koukos
Dispatching a livewire modal from Action in a Table
Hello, i am trying to open a custom livewire modal from an action inside a table i have in a resource.
But when i click the action nothing happens. I was thinking maybe its because the modal needs the
so that it can open, but i am not sure where i should add this so that it will work.
I have an admin page which has the resources and this resource i am mentioning above. I have also the front page which is in livewire and there the modals work as intented but i cannot make them work from inside the resource action in the admin panel.
Is there a workaround for what i need?
2 replies
Search options in SelectColumn
I have created a custom column that extends SelectColumn and I have added to the view the view of SelectColumn is there something I could do inside the blade so that I can have a search like functionality similar to the one there is in Select form component?
3 replies
Excel Exporter for Laravel Table on Livewire Component
I have a header action that exports to an excel file. I have make everything according to the docs on how to set up the exporter. My table is on a livewire component though. It shows me that the proccess has started as the notification but it does not show me the notification when it is ready. I don't want to have this notification in the admin panel but on the livewire component that i have in a view. I have added in the app.blade.php
In the Filament Table I have in the livewire component
Is there a way to achieve this?
2 replies
How to bind the filters of a filament table created in a livewire component with a widget?
I have made a custom filament table inside a livewire component. I have made it and its working as intented. I have also made a widget that i want to bind to this table so that when i change the filters etc the stats will be automatically updated. In the filament table i have
and in the widget i have
In the view now i have a Livewire component and inside the view of it i call
also inside another div on this view that i call the widget
But i get
Cannot assign null to property App\Livewire\OrderStatsOverview::$tableColumnSearches of type array
Is there something else i need to do in order to achieve what i want?
Its not inside a resource because i have a table inside a livewire component which i have made using this
https://filamentphp.com/docs/3.x/tables/adding-a-table-to-a-livewire-component
2 replies
RelationManager on View Resource
When i create a new relation manager and i add it in getRelations array then it automatically is shown on the edit page of my resource and there i can create,edit and delete from this. In the View page the table is shown but without being able to have actions. Is there a way so that i can have also on the View Page the same functionality of the Relation that i have in the Edit Page?
9 replies