Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devboyarif/leave-management-system
Leaving - Leave Management System SPA (SAAS)
https://github.com/devboyarif/leave-management-system
bootstrap4 css html inertiajs laravel leave-management-system php saas single-page-applications vuejs webpack
Last synced: about 1 month ago
JSON representation
Leaving - Leave Management System SPA (SAAS)
- Host: GitHub
- URL: https://github.com/devboyarif/leave-management-system
- Owner: devboyarif
- Created: 2022-05-27T10:26:52.000Z (over 2 years ago)
- Default Branch: dev
- Last Pushed: 2023-12-27T14:22:54.000Z (almost 1 year ago)
- Last Synced: 2023-12-27T15:37:51.538Z (almost 1 year ago)
- Topics: bootstrap4, css, html, inertiajs, laravel, leave-management-system, php, saas, single-page-applications, vuejs, webpack
- Language: Vue
- Homepage: https://leaving.devarif.co
- Size: 55.3 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leave Management System
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.### Key Features
## Project Live Link
[Live Link ⇨ ](https://leaving.devarif.co)
## Setup
```bash
# 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
```
## Development Server
Start the development server on http://localhost:8000
```bash
php artisan serve
```
```bash
npm run watch / yarn watch
```