извлекая данные с разбивкой на страницы:
Код: Выделить всё
$contacts = Contact::orderBy('name', 'asc')->paginate(10);
return Inertia::render('Contacts/index', [
'contacts' => $contacts
]);
Код: Выделить всё
{{ $contacts->links() }}Подробнее здесь: https://stackoverflow.com/questions/720 ... on-laravel
Мобильная версия