Files
generic_table_examples/app/Tables/TableWithActionColumn.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 = 0;
public function actionView(IRowData $row): \Illuminate\View\View
{
return view("tables_action_views.edit_delete_details", ['productId' => $row->get('name')]);
}
}