Skip to content

MusheAbdulHakim/Laravel-Smarthr

Repository files navigation

Issues Forks Stars

Features

  • Admin Backend

    1. Contact App
    2. Filemanager app
    3. Employees
    4. Holidays
    5. Employee
    6. Departments
    7. Designations
    8. Clients
    9. Policies
    10. Jobs
    11. Job Applicants
    12. Assets
    13. Users
    14. Application Settings
  • Frontend

    1. Jobs List
    2. View Job
    3. Apply for job

Installation

Follow these steps to install the application.

  1. Clone the Repository
git clone https://github.com/MusheAbdulHakim/Laravel-Smarthr.git

  1. Go to project directory
cd Laravel-Smarthr

  1. Install packages with composer
composer install

  1. Create your database

  2. Rename .env.example to .env Or copy it and paste at project root directory and name the file .env.You can also use this command.

cp .env.example ./.env

  1. Generate app key with this command
php artisan key:generate

  1. Set database connection to your database in the .env file.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=smarthr
DB_USERNAME=root
DB_PASSWORD=

  1. Import smarthr.sql file in the database folder, or run migrations Use this command to run migrations and seeders
php artisan migrate --seed

  1. Start the local server and browser to your app. This command will start the development server
php artisan serve

  1. Open the address in the terminal in your browser.Usually address is usually like this:
http://127.0.0.1:8000

  1. Enjoy and make sure to star the repo :).Report bugs,features and also send your pull requests I will be happy to merge them.

admin login credentials

 email: admin@admin.com
 password: admin

#screenshots

ScreenShot Dashboard Dashboard Dashboard

Theme

https://themeforest.net/item/smarthr-bootstrap-admin-panel-template/21153150

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, Laracasts can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.

Premium Partners

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.

License

The Laravel framework is open-sourced software licensed under the MIT license.

Laravel-Smarthr