Files
generic_table_examples/app/Livewire/Examples/TableWithCustomColumnComponent.php
David 25c6b316bd #FEAT
+ Added new example about the new feature: custom column
2025-03-17 22:33:11 -04:00

18 lines
398 B
PHP

<?php
namespace App\Livewire\Examples;
use App\Tables\TableWithCustomColumn;
use Livewire\Component;
class TableWithCustomColumnComponent extends Component
{
public function render()
{
return view('livewire.examples.custom-tables-component',[
'table' => TableWithCustomColumn::class
])->extends('components.layouts.app')
->section('content');
}
}