Livewire component in blade template
i have a livewire component table made following the documentation in this link:
https://filamentphp.com/docs/3.x/tables/adding-a-table-to-a-livewire-component
now i need to add this table or component in a blade file:
i think this is not correct but i dont know how to add it...
any help would be apreciated!
3 Replies
it was the answer in the documentation i think is:
<x-filament-panels::page>
@livewire('table1')
</x-filament-panels::page>
<x-filament-panels::page>
use filament page component when you generate it with php artisan make:filament-page
where do you want to add your table? Livewire page or Filament generated page?i add it in a livewire component
it worked