Files
generic_table_examples/app/Tables/TableWithPaginationSettings.php

13 lines
338 B
PHP

<?php
namespace App\Tables;
use App\Tables\Traits\WithColumnFormatter;
use Mmt\GenericTable\Interfaces\IGenericTable;
use Mmt\GenericTable\Interfaces\IPaginationRack;
use Mmt\GenericTable\Interfaces\IRowsPerPage;
class TableWithPaginationSettings implements IGenericTable, IPaginationRack, IRowsPerPage
{
use WithColumnFormatter;
}