lunarphp/livewire-tables

Livewire Tables

Maintainers

Package info

github.com/lunarphp/livewire-tables

Type:project

pkg:composer/lunarphp/livewire-tables

Statistics

Installs: 23 736

Dependents: 2

Suggesters: 0

Stars: 2


README

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.