Simple web for creating and filtering employee
- Clone the app
git clone https://github.com/n9mi/employee-app.git
-
Set the .env by change .env.example to .env and set required configurations.
-
Install php dependencies with composer
composer install
- Install javascript dependencies
npm install
npm run build
- Generate the key
php artisan key:generate
- Run the migration and seed the database (please ensure your .env configurations already been set)
php artisan migrate:fresh
php artisan db:seed
- Serve the app
php artisan serve