109 lines
2.7 KiB
PHP
109 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Admin;
|
|
|
|
use App\Models\Branches;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use PowerComponents\LivewirePowerGrid\Button;
|
|
use PowerComponents\LivewirePowerGrid\Column;
|
|
use PowerComponents\LivewirePowerGrid\Facades\Filter;
|
|
use PowerComponents\LivewirePowerGrid\Facades\PowerGrid;
|
|
use PowerComponents\LivewirePowerGrid\PowerGridFields;
|
|
use PowerComponents\LivewirePowerGrid\PowerGridComponent;
|
|
|
|
final class BranchesTable extends PowerGridComponent
|
|
{
|
|
public string $tableName = 'branches-table-lcqb7y-table';
|
|
|
|
public function setUp(): array
|
|
{
|
|
$this->showCheckBox();
|
|
|
|
return [
|
|
PowerGrid::header()
|
|
->showSearchInput(),
|
|
PowerGrid::footer()
|
|
->showPerPage()
|
|
->showRecordCount(),
|
|
];
|
|
}
|
|
|
|
public function datasource(): Builder
|
|
{
|
|
return Branches::query();
|
|
}
|
|
|
|
public function relationSearch(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function fields(): PowerGridFields
|
|
{
|
|
return PowerGrid::fields()
|
|
->add('id')
|
|
->add('name')
|
|
->add('external_ip')
|
|
->add('created_at');
|
|
}
|
|
|
|
public function columns(): array
|
|
{
|
|
return [
|
|
Column::make('Id', 'id'),
|
|
Column::make('Name', 'name')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
Column::make('External ip', 'external_ip')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
Column::make('Created at', 'created_at_formatted', 'created_at')
|
|
->sortable(),
|
|
|
|
Column::make('Created at', 'created_at')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
Column::action('Action')
|
|
];
|
|
}
|
|
|
|
public function filters(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
#[\Livewire\Attributes\On('edit')]
|
|
public function edit($rowId): void
|
|
{
|
|
$this->js('alert('.$rowId.')');
|
|
}
|
|
|
|
public function actions(Branches $row): array
|
|
{
|
|
return [
|
|
Button::add('edit')
|
|
->slot('Edit: '.$row->id)
|
|
->id()
|
|
->class('pg-btn-white dark:ring-pg-primary-600 dark:border-pg-primary-600 dark:hover:bg-pg-primary-700 dark:ring-offset-pg-primary-800 dark:text-pg-primary-300 dark:bg-pg-primary-700')
|
|
->dispatch('edit', ['rowId' => $row->id])
|
|
];
|
|
}
|
|
|
|
/*
|
|
public function actionRules($row): array
|
|
{
|
|
return [
|
|
// Hide button edit for ID 1
|
|
Rule::button('edit')
|
|
->when(fn($row) => $row->id === 1)
|
|
->hide(),
|
|
];
|
|
}
|
|
*/
|
|
}
|