1.0.8 • Published 4 years ago
tb-vue3-laravel-lnertia-pagination v1.0.8
Simple Pagination For Laravel when using Inertia js with vue3 pagination can be edited for large or small

multiple tables can be used on the same page

you will need to add the following to your routes
Route::match(['GET','POST'],'/test', 'TestController@test')->name('test');Test Controller will need editing
The test uses a table called test in the TestController.php
$data = \DB::table('test')->paginate(5); edit this for your tablesee the git repository in Test.vue to view how to add to your component