+ Added new example about the new feature: custom column
This commit is contained in:
David
2025-03-17 22:33:11 -04:00
parent 096c7944b9
commit 25c6b316bd
14 changed files with 2260 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
<?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');
}
}