- Download or clone the project form Github. Click on this link
- Make a copy of the .env.example file in your project directory and update the database credentials according to your database.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=ipms
DB_USERNAME=root
DB_PASSWORD=mysql_password
- Run the following commands sequentially in your project directory.
1. Composer update
2. composer dump-autoload
3. php artisan migrate
4. php artisan key:generate
5. php artisan jwt:secret
6. php artisan serve
- You can make a user using Database seeder or you can register new user with help of api endpoint. please run the following command to create user the help of database seeder.
php artisan db:seed
It will create a user named Md. Tanvirul Islam.
Email: [email protected]
Password: password
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:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.