21 lines
551 B
PHP
21 lines
551 B
PHP
<?php
|
|
|
|
namespace App\Tables;
|
|
|
|
|
|
use App\Tables\Traits\WithExportableProductColumns;
|
|
use Mmt\GenericTable\Interfaces\IActionColumn;
|
|
use Mmt\GenericTable\Interfaces\IGenericTable;
|
|
use Mmt\GenericTable\Interfaces\IRowData;
|
|
|
|
class TableWithActionColumn implements IGenericTable, IActionColumn
|
|
{
|
|
use WithExportableProductColumns;
|
|
|
|
public int $actionColumnIndex = 2;
|
|
|
|
public function actionView(IRowData $row): \Illuminate\View\View
|
|
{
|
|
return view("tables_action_views.edit_delete_details", ['productId' => $row->get('name')]);
|
|
}
|
|
} |