Clone Repository
git clone https://github.com/syednizamudeen/laravel_datatable_serverside.git
cd laravel_datatable_serverside
cp .env.example .env
[or] copy .env.example .env
and enter necessary configurations including database detail
Install Plugins required by application using Package Manager
composer install
npm install
php artisan key:generate
Create Database and run migration
create database datatableserverside;
php artisan migrate
Sample Data
php artisan db:seed --class=HomeSeeder
php artisan db:seed --class=DetailsTableSeeder
Application ready for use
php artisan serve
[or] php artisan serve --host=some.other.domain --port=8001
Filename: webpack.mix.js
.setResourceRoot('../../public/');
Comment or modify this line based on your Server Setup.