Workflow
Enum
ID
Dish
Diet
ID
Dish
Diet
1
Arkansas Possum Pie
🍽️ All diets
2
Albacore Tuna Melt
🍽️ All diets
3
борщ
🍽️ All diets
4
Bacalhau com natas
🍽️ All diets
5
Baba Ghanoush
🌱 Suitable for Vegans
6
Bacon Cheeseburger
🍽️ All diets
7
Baked potato
🌱 Suitable for Vegans
8
Baklava
🥜 Suitable for Celiacs
9
Bangers and mash
🌱 Suitable for Vegans
10
Black Pudding
🥜 Suitable for Celiacs
Disclaimer: Table data is randomly generated for illustrative purposes only. The information here is not a reflection of the actual market and does not constitute business, financial, or medical advice.
<?php
 
namespace App\Livewire\Examples\EnumTable;
 
use App\Enums\Diet;
use App\Models\Dish;
use Illuminate\Database\Eloquent\Builder;
use PowerComponents\LivewirePowerGrid\Column;
use PowerComponents\LivewirePowerGrid\Facades\Filter;
use PowerComponents\LivewirePowerGrid\Footer;
use PowerComponents\LivewirePowerGrid\Header;
use PowerComponents\LivewirePowerGrid\PowerGrid;
use PowerComponents\LivewirePowerGrid\PowerGridComponent;
use PowerComponents\LivewirePowerGrid\PowerGridFields;
 
class EnumTable extends PowerGridComponent
{
public bool $filtersOutside = false;
 
public string $sortField = 'dishes.id';
 
public bool $ableToLoad = false;
 
public function setUp(): array
{
$this->showCheckBox();
 
return [
Header::make()
->showToggleColumns(),
 
Footer::make()
->showPerPage()
->showRecordCount(),
];
}
 
public function datasource(): ?Builder
{
return Dish::query();
}
 
public function relationSearch(): array
{
return [
'category' => [
'name',
],
];
}
 
public function fields(): PowerGridFields
{
return PowerGrid::fields()
->add('id')
->add('dish_name', fn ($dish) => $dish->name)
->add('diet', fn ($dish) => \App\Enums\Diet::from($dish->diet)->labels());
}
 
public function columns(): array
{
return [
Column::add()
->title('ID')
->field('id', 'dishes.id')
->searchable()
->sortable(),
 
Column::add()
->title('Dish')
->field('dish_name', 'dishes.name')
->searchable()
->contentClasses('!whitespace-normal')
->placeholder('placeholder')
->sortable(),
 
Column::add()
->field('diet', 'dishes.diet')
->searchable()
->title('Diet'),
];
}
 
public function filters(): array
{
return [
Filter::enumSelect('diet', 'dishes.diet')
->dataSource(Diet::cases())
->optionLabel('dishes.diet'),
];
}
}
Code highlighting provided by Torchlight.dev

Here you can find all relevant packages installed on this demo.

Name
Version
Description
laravel/framework
v11
The Laravel Framework.
livewire/livewire
v3.5.4
A front-end framework for Laravel.
openspout/openspout
v4.24.3
PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way
power-components/livewire-powergrid
5.x-dev
PowerGrid generates Advanced Datatables using Laravel Livewire.