Files
timebank-cc-public/app/Http/Livewire/TableTitle.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

25 lines
371 B
PHP

<?php
namespace App\Http\Livewire;
use Livewire\Component;
class TableTitle extends Component
{
public $title;
protected $listeners = ['tableTitle'=> 'tableTitleDispatched'];
public function tableTitleDispatched($title)
{
$this->title = $title;
}
public function render()
{
return view('livewire.table-title');
}
}