19 lines
443 B
PHP
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');
|
|
}
|
|
}
|