Leaving is a completely ready-to-use leave management system that companies use to allow employees to request leave and approve requests made by employees. It will save valuable time spent tracking your employee's vacation. Leaving will help you track your employee's leaves in one place in seconds and monitor them from different locations. In the past, this was done manually by using sheets of paper to keep track of how much leave time employees had available.
# Clone the repo
git clone https://github.com/devboyarif/leave-management-system.git
# Install composer dependency
composer install
# Install node modules
npm install / yarn
# Copy environment file
cp .env.example .env
# Set the Application key
php artisan key:generate
# setup the database credentials and migrate database with seeders
php artisan migrate --seed
Start the development server on http://localhost:8000
php artisan serve
npm run watch / yarn watch