CyberSharky94 / laravel_6_estudms

Basic Student Management System Concept based on Laravel 6 framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Total Downloads Latest Stable Version License

Development Requirement

  • Laravel Version: 6.0
  • Server: Apache (Windows require VC14 @ VC15) / Nginx
  • PHP Version: >= 7.2
  • Database: PostgreSQL 12 (Recommended) / MySQL 5.7 / MariaDB 10.4
  • Composer - https://getcomposer.org/
  • Git - https://git-scm.com/

How to Install

  1. Open Terminal

  2. Clone this project into www @ htdocs directory

git clone https://github.com/CyberSharky94/laravel_6_estudms.git
  1. Update Composer in project directory using following command:
composer update
  1. Create a database. (if not exist).

  2. Duplicate .env.example file. Rename the new file into .env.

  3. Setting .env file according to your development environment. Example:

# Sample of Database Configuration:

---> For PostgreSQL:

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=laravel_student_db
DB_USERNAME=postgres
DB_PASSWORD=root

---> For MySQL / MariaDB:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_student_db
DB_USERNAME=root
DB_PASSWORD=

# Sample of Mail Configuration:
-> Sign Up Account @ https://mailtrap.io/

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=!!!MAIL_TRAP_USERNAME!!!
MAIL_PASSWORD=!!!MAIL_TRAP_PASSWORD!!!
MAIL_FROM_ADDRESS=from@example.com
MAIL_FROM_NAME=Example
MAIL_ENCRYPTION=null
  1. If necessary, run migration using following command:
php artisan migrate
  1. Link storage using following command:
php artisan storage:link
  1. Generate APP_KEY using following command:
php artisan key:generate
  1. Setup complete.
  1. Try to run the Laravel project using following command:
php artisan serve
  1. Or directly run it on browser by navigate to:
http://localhost/laravel_6_estudms/public

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.

Contributing

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

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-source software licensed under the MIT license.

About

Basic Student Management System Concept based on Laravel 6 framework


Languages

Language:CSS 43.9%Language:PHP 32.5%Language:HTML 23.7%