An open API service indexing awesome lists of open source software.

https://github.com/rafi021/employeemanagement

An open-source employee management demo project using Laravel 8.
https://github.com/rafi021/employeemanagement

bootstrap5-template laravel-ui-auth-theme laravel8x vue-router vuejs

Last synced: about 2 months ago
JSON representation

An open-source employee management demo project using Laravel 8.

Awesome Lists containing this project

README

          


Build Status
Total Downloads
Latest Stable Version
License

## About employeemanagement
It is a Laravel 8 & Vue 3 based SPA demo project (Continue Development). Build with love and open source for developers.

1. Laravel 8
2. Bootstrap 4.6
3. laravel/ui -- Authentication (composer require laravel/ui --> php artisan ui vue --auth)
4. Vue 3
5. Vue Router 4
6. Vue Loader 16.8.1
7. Vuex

## Getting Started Step by Step
1. In your root folder, clone the project file using git clone https://github.com/rafi021/employeemanagement.git
2. Open terminal (bash/cmd). Then go to project folder using command

```sh
cd employeemanagement
```

3. Then install required files and libraries using

```sh
composer install
```

4. Then create a .env file and generate key for this project using command

```sh
cp .env.example .env

php artisan key:generate
```

5. Then compile all CSS & JS files together using this command

```sh
npm install && npm run dev
```

or

```sh
yarn install && yarn dev
```
6. Create a database in MYSQL and connect it with your project via updating .env file.
7. After connecting the db with project, then run command

```sh
php artisan migrate:fresh --seed
```

After completing the migration and seeding of db, you will have 10 user ready for login in this project.
A. UserName -> Admin
Email -> admin@gmail.com
Pass -> 12345678

Finally we are ready to run our project using this command

```sh
php artisan serve
```

************************************ Note *********************************
If you find error on migrate:fresh --seed, then try to comment all the observers created method.Such as
```
// Log::info("New City".$city."Data Inserted by ".auth()->user()->username);
```
***************************************************************************