Files
generic_table_examples/app/Livewire/Examples/TableWithPaginationSettingsComponent.php
2025-03-12 00:41:31 -04:00

19 lines
443 B
PHP

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