Skip to content

undefined0000000/custom-service-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
WalterKern
Mar 6, 2023
390028c · Mar 6, 2023
Jul 8, 2022
Sep 7, 2022
Jul 10, 2022
Oct 28, 2021
Oct 28, 2021
Jul 8, 2022
Oct 28, 2021
Oct 28, 2021
Jul 8, 2022
Mar 6, 2023
Feb 26, 2023
Oct 28, 2021
Oct 28, 2021
Oct 28, 2021

Repository files navigation

Simple repository pattern for laravel, with services!

With easy repository, you can have the power of the repository pattern, without having to write too much code altogether. The package automatically binds the interfaces to the implementations, all you have to do is change in the configuration which implementation is being used at the moment!

Requirement

  • Minimum PHP ^8.1

Installation

You can install the package via composer for latest version

$ composer require yaza/laravel-repository-service

Specific Version :

Laravel Version Package Version
10 4.x
9 3.2
$ composer require yaza/laravel-repository-service:"^3.2"

Publish the config file with (Important):

php artisan vendor:publish --provider="LaravelEasyRepository\LaravelEasyRepositoryServiceProvider" --tag="easy-repository-config"

Quick usage

You can also create only the repository, or service, or both with artisan:

php artisan make:repository User
// or
php artisan make:repository UserRepository

// or create together with a service
php artisan make:repository User --service
// or
php artisan make:repository UserRepository --service

// or create a service separately
php artisan make:service User
// or
php artisan make:service UserService
// or
php artisan make:service UserService --repository

// create service for api template
php artisan make:service UserService --api

Documentation

Go to guide Click Here

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.

About

This is built by super star

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published