#FEAT
+ Added new example about the new feature: custom column
This commit is contained in:
17
app/Livewire/Examples/TableWithCustomColumnComponent.php
Normal file
17
app/Livewire/Examples/TableWithCustomColumnComponent.php
Normal 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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user