/employee-app

Simple web for creating and filtering employee

Primary LanguagePHP

employee-app

Simple web for creating and filtering employee

Stack used

Screenshots

image image

How to run

  1. Clone the app
git clone https://github.com/n9mi/employee-app.git
  1. Set the .env by change .env.example to .env and set required configurations.

  2. Install php dependencies with composer

composer install
  1. Install javascript dependencies
npm install
npm run build
  1. Generate the key
php artisan key:generate
  1. Run the migration and seed the database (please ensure your .env configurations already been set)
php artisan migrate:fresh
php artisan db:seed
  1. Serve the app
php artisan serve