A simple project developed on Laravel to register Students
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
Laravel 5.7
Composer 1.8.4
MySQL 5.7
Download or clone the project,and access it through console or powershell
$ cd name SchoolDemo
Execute the following command
$composer install
Modify the name of the .env.example file. by .env
Create database SchoolDemo on MySQL
CREATE DATABASE schooldemo /*!40100 COLLATE 'utf8_spanish_ci' */
Run migrations and the seeder
$php artisan migrate:refresh --seed
Finally we just have to generate a key for our app.
$ php artisan key: generate
Ready we can run the project.
$ php artisan serve
Use the following passswords
User:admin password: admin123 => can do anything has administrator role
User:user password: 123456 => only see a list of the Students registered by the administrator has user role
Please leave me a message
- Manuel Córdoba -
This project is licensed under the GPL License - see the LICENSE.md file for details