@php
$examples = [
'Data table' => <<<'BLADE'
BLADE,
'Pagination' => <<<'BLADE'
{{ (new \Illuminate\Pagination\LengthAwarePaginator(range(1, 10), 95, 10, 3, ['path' => '#data']))->links() }}
{{ (new \Illuminate\Pagination\Paginator(range(1, 11), 10, 2, ['path' => '#data']))->links() }}
BLADE,
];
@endphp
Data
<x-table>, <x-sort-header>, and Laravel's and Livewire's paginators.
@foreach ($examples as $title => $code)
@endforeach