@php $examples = [ 'Data table' => <<<'BLADE'
Name Size Expires Actions contract.pdf 1.2 MB in 1 hour design-review.mp4 3.4 GB in 7 days holiday-photos.zip 248 MB in 3 days
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