15 lines
335 B
PHP
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;
|
|
} |