laravel-livewire-tables
laravel-livewire-tables copied to clipboard
A dynamic, responsive Laravel Livewire table component with searching, sorting, checkboxes, and pagination.
Hi, awesome package. I love it. If is possible I would like to sponsor it. Anyways, is there a way to CONCAT two db columns like FirstName and LastName ?...
Add second parameter (array with attributes) to view function and make them available in $column attribute. This way we dont need to have separate view for each case.
Is there a need for optional pagination? I have serveral Tables on one page and pagination would intnerfere with all other tables - even thoug they do not have enough...
Is it possible to add support for Livewire 2.*?
It has taken me more time than it should... I only wanted users with the role_id = 1 I now have a solution and I wanted to share it. class...
For example ` php artisan make:table BarTable --model=Models\Foo\Bar` creates a class with the following query() method ``` public function query() { return ModelsFooBar::query(); } ``` This is pretty easy to...
Adding functionality to add buttons to export data with Laravel Excel export Thanks to _https://github.com/rappasoft/laravel-livewire-tables_
Hi, consider export excel with Maatwebsite/Laravel-Excel
public function query() { $response = Transaction::latest()->select('transactions.*', 'users.name', 'users.mobile') ->join('users', 'transactions.user_id', 'users.id'); return $response; } public function columns() { return [ // Column::make('ID')->searchable()->sortable(), Column::make("Date", 'created_at')->view('livewire.admin.partial.common.date-format')->sortable(), Column::make('Order No', 'order_id')->searchable()->sortable(), Column::make('Name', 'name')->searchable('users.name')->sortable(),...
Hi, i have an issue when searching using camel case relation name this is my error ``` Call to undefined method App\Invoice::student_study() ``` this is my code ```