Uploading content

This commit is contained in:
David
2025-03-12 00:41:31 -04:00
parent b192e57eb5
commit f70ef52f9e
108 changed files with 13255 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Tables;
use App\Models\Product;
use App\Tables\Traits\WithColumnFormatter;
use Illuminate\Database\Eloquent\Model;
use Mmt\GenericTable\Interfaces\IDragDropReordering;
use Mmt\GenericTable\Interfaces\IGenericTable;
class TableWithDragDropOrdering implements IGenericTable, IDragDropReordering
{
use WithColumnFormatter;
public string $Order;
public Model|string $model = Product::class;
public string $orderingColumn = 'order';
}