DEV Community

Deva Muthusamy
Deva Muthusamy

Posted on • Originally published at blog.bladetailui.com

Data table package for Laravel livewire.

It’s an easy way to manage data and columns by GUI

Laravel livewire data table

In this livewire data table, you can manage data efficiently in GUI. You can add and edit columns and make columns sortable, searchable, editable, and filterable. You can edit data inline and delete it!

Install via composer

composer require devaweb/livewire-data-table
Enter fullscreen mode Exit fullscreen mode

Use it...

   @livewire('livewire-data-table', [ 
       'model' => \App\Models\User::class 
   ], key('table-1'))
Enter fullscreen mode Exit fullscreen mode

See full documentaion

Top comments (0)