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:
- 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.
This repo contains an empty laravel application with service-repository pattern example and swagger OA 5 installed out-of-box. In order to run this project, run
composer install
Create migration for Product model:
php artisan make:migration create_product_table
Set database creditionals and make migration:
php artisan migrate
Run application:
php artisan serve