All Projects → getsolaris → laravel-make-service-command

getsolaris / laravel-make-service-command

Licence: MIT License
🚀 Create a service layer for Laravel 5+ (Supported: Laravel 9)

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel-make-service-command

java-bible
🍌 我的技术摘要
Stars: ✭ 2,950 (+6760.47%)
Mutual labels:  design-pattern, mvc
Java Bible
🍌 我的技术摘要
Stars: ✭ 2,919 (+6688.37%)
Mutual labels:  design-pattern, mvc
OwOFrame
A lightweight MVC framework for PHP
Stars: ✭ 46 (+6.98%)
Mutual labels:  mvc
PyQt4 locadora
PyQt4 - Locadora de Veículos
Stars: ✭ 24 (-44.19%)
Mutual labels:  mvc
express-mvc
A light-weight mvc pattern for express framework with minimum dependencies
Stars: ✭ 23 (-46.51%)
Mutual labels:  mvc
simpleDjangoProject
simpleDjangoProject
Stars: ✭ 30 (-30.23%)
Mutual labels:  mvc
leafMVC
MVC "Framework" created from Leaf PHP Framework
Stars: ✭ 25 (-41.86%)
Mutual labels:  mvc
OOP-Design-Patterns
MET CS665 - OOP Design Patterns Code Examples
Stars: ✭ 74 (+72.09%)
Mutual labels:  design-pattern
design-patterns-for-humans-cn
Design patterns for humans 中文版 - 对设计模式超简单的解释
Stars: ✭ 2,432 (+5555.81%)
Mutual labels:  design-pattern
MVC
基于MVC+EF6+EasyUI搭建的后台管理系统(粗糙版,精华版之后发布)
Stars: ✭ 14 (-67.44%)
Mutual labels:  mvc
mvc-tree
🌳 A chronological visualization of the family of MVC patterns.
Stars: ✭ 40 (-6.98%)
Mutual labels:  mvc
Programming-Reference
Open repository of programming topic for reverse engineering purpose.
Stars: ✭ 25 (-41.86%)
Mutual labels:  design-pattern
ios-architecture-example
Architecture pattern simple examples in iOS. You can compare differences in MVC, MVP, MVVM-Delegate and MVVM-Rx for same feature
Stars: ✭ 16 (-62.79%)
Mutual labels:  mvc
startmvc
超轻量php框架 lightweight php framework
Stars: ✭ 25 (-41.86%)
Mutual labels:  mvc
Desenvolvimento-Android-do-absoluto-zero-para-iniciantes
Visite meu site e conheça todos os meus cursos 100% on-line.
Stars: ✭ 33 (-23.26%)
Mutual labels:  mvc
Bingo-Framework
MVC framework for PHP
Stars: ✭ 15 (-65.12%)
Mutual labels:  mvc
php-mvc
PHP MVC ⦿ Dockerized • Composer • RESTful API • Memcached • cron • WebSocket
Stars: ✭ 17 (-60.47%)
Mutual labels:  mvc
generator-espress
an opinionated yeoman generator that scaffolds a mvc express webapp completely in es6
Stars: ✭ 20 (-53.49%)
Mutual labels:  mvc
Library
JavaWeb图书销售管理系统/网上书店
Stars: ✭ 77 (+79.07%)
Mutual labels:  mvc
W
Framework pédagogique de la WebForce3
Stars: ✭ 10 (-76.74%)
Mutual labels:  mvc

Total Downloads Latest Stable Version License

A MVCS pattern create a service command for Laravel 5+

Create a new service class and service contract

Install

composer require getsolaris/laravel-make-service

Suggest

[email protected]

Usage

$ php artisan make:service {name : Create a service class} {--c : Optional of create a service contract}

Example

Create a service class

$ php artisan make:service UserService
<?php
// app/Http/Services/UserService.php

namespace App\Services;

/**
 * Class UserService
 * @package App\Services
 */
class UserService
{

}

+ Optional service contract

$ php artisan make:service UserService --c
<?php
// app/Http/Services/Contracts/UserServiceContract.php

namespace App\Services\Contracts;

/**
 * Interface UserServiceContract
 * @package App\Services\Contracts
 */
interface UserServiceContract
{

}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].