/laravel-service-repository-template

A laravel template for service-repository pattern with example crud and swagger installed

Primary LanguagePHP

Laravel Logo

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:

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