Files
generic_table_examples/app/Tables/TableWithnNoSettings.php
2025-03-12 00:41:31 -04:00

15 lines
335 B
PHP

<?php
namespace App\Tables;
use App\Models\Product;
use Illuminate\Database\Eloquent\Model;
use Mmt\GenericTable\Components\ColumnCollection;
use Mmt\GenericTable\Interfaces\IGenericTable;
class TableWithnNoSettings implements IGenericTable
{
public Model|string $model = Product::class;
public ColumnCollection $columns;
}