13 lines
338 B
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;
|
|
} |