Server-side pagination, filter, live search, sort, and limit data to be displayed on each page.
Source Code : GitHub
- Server-side pagination
- Live search
- Sort
- Limit
- Filter
Clone the repository
git clone https://github.com/raprmdn/laravel-inertia-datatable.gitcd into the project directory
cd laravel-inertia-datatableInstall dependencies
# Laravel
composer install
# InertiaJS and ReactJS
npm installcopy .env.example to .env and set your database configuration
cp .env.example .envGenerate an application key
php artisan key:generateRun the database migrations
php artisan migrateSeed the database
php artisan db:seedStart the local development server
# Laravel
php artisan serve
# InertiaJS and ReactJS
npm run dev
