LaravelPackages.net
Acme Inc.
Toggle sidebar
lunarphp/livewire-tables

Livewire Tables

25.561
2
0.8.2
About lunarphp/livewire-tables

lunarphp/livewire-tables is a Laravel package for livewire tables. It currently has 2 GitHub stars and 25.561 downloads on Packagist (latest version 0.8.2). Install it with composer require lunarphp/livewire-tables. Discover more Laravel packages by lunarphp or browse all Laravel packages to compare alternatives.

Last updated

Livewire Tables

Installation

composer require lunarphp/livewire-tables

Creating a table

<?php

namespace App\Http\Livewire\Tables;

use Lunar\LivewireTables\Components\Table;

class OrdersTable extends Table
{

}

Features

Searching

To enable searching on the table, set the $searchable property to true.

/**
 * Whether this table is searchable.
 *
 * @var bool
 */
public $searchable = true;

This will enable a search box and add the query parameter whenever the search input is used.

Comments