PHPackages                             veseluy-rodjer/laravel-service-generator - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. veseluy-rodjer/laravel-service-generator

ActiveLibrary[CLI &amp; Console](/categories/cli)

veseluy-rodjer/laravel-service-generator
========================================

Generate Laravel services

v1.0.1(4y ago)01.4k—0%MITPHPPHP ^8.0

Since Oct 24Pushed 2y agoCompare

[ Source](https://github.com/veseluy-rodjer/laravel-service-generator)[ Packagist](https://packagist.org/packages/veseluy-rodjer/laravel-service-generator)[ Docs](https://github.com/timwassenburg/laravel-service-generator)[ RSS](/packages/veseluy-rodjer-laravel-service-generator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (4)Used By (0)

 [ ![Logo](img/wrench.png) ](https://github.com/timwassenburg/laravel-service-generator)Laravel **Service Generator**
=============================

[](#laravel-service-generator)

 Quickly generate services for your projects!

Table of Contents
-----------------

[](#table-of-contents)

1. [Features](#features)
2. [Installation](#installation)
3. [Usage](#usage)
    - [Generate services](#generate-services)
    - [Generate services for models](#generate-services-for-models)
    - [Generate services for controllers](#generate-services-for-controllers)
4. [The service pattern](#the-service-pattern)
    - [When to use the service pattern](#when-to-use-the-service-pattern)
    - [How to use services](#how-to-use-services)
        - [Static methods](#static-methods)
        - [Dependency Injection](#depency-injection)
5. [More generator packages](#more-generator-packages)
6. [Contributing](#contributing)
7. [License](#license)

Features
--------

[](#features)

This package adds the `php artisan make:service {name}` command. The command generates an empty service class in `app\Services` to get started. I made this mainly for own use because I like to be able to generate recurring files from the command line to keep my workflow consistent.

Installation
------------

[](#installation)

Install the package with composer.

```
composer require timwassenburg/laravel-service-generator
```

Usage
-----

[](#usage)

After installation the `php artisan make:service {name}` will be available in the list of artisan commands.

### Generate Service

[](#generate-service)

To generate a new service use the following artisan command.

```
php artisan make:service UserService
```

### Generate a service for a model

[](#generate-a-service-for-a-model)

Add a `--service` or `-S` param to generate a service for the model.

```
php artisan make:model Post --service
```

Use the `-a` or `--all` param to generate a service, migration, seeder, factory, policy, and resource controller for the model.

```
php artisan make:model Post --all
```

### Generate a service for a controller

[](#generate-a-service-for-a-controller)

Add a `--service` or `-S` param to generate a service for the controller.

```
php artisan make:controller PostController --service
```

The service pattern
-------------------

[](#the-service-pattern)

### When to use the service pattern

[](#when-to-use-the-service-pattern)

A common question is: where do I put my business logic? You want to keep your models thin and your controller functions skinny. There are multiple ways to archive this, extracting your business logic to the service layer is a common method. By encapsulating your business logic in a service class you are able to re-use the logic for example in your controllers, commands, jobs and middelware.

### How to use services

[](#how-to-use-services)

Once you have made a service it is time to add your business logic. We will discus how to use a service via static methods, dependency injection and how to use it with interfaces and repositories.

#### Static methods

[](#static-methods)

a common way to use a service is to call it's methods statically. It is similar to helper functions. Let's say we have a `PostService` with a method to get a post based on a slug.

```
namespace App\Services;

use App\Models\Post;

class PostService
{
    // Declare the function as static
    public static function getPostBySlug(string $slug): Post
    {
        return Post::with('tags')
            ->where('slug', $slug)
            ->get();
    }
}
```

Next you can include the service class for example your controller and call the `getPostBySlug` method statically.

```
namespace App\Http\Controllers;

// Include the service
use App\Services\PostService;

class PostController extends Controller
{
    public function show(string $slug)
    {
        // Call the method statically from the service class
        $post = PostService::getPostBySlug($slug);

        return view('posts.show', compact('post'));
    }
}#
```

The `getPostBySlug` method is in this example a very simple function but as you can see it keeps you controller skinny and and your business logic seperated. Keep in mind that static classes and methods are stateless. The class won't save any data in itself.

#### Dependency Injection

[](#dependency-injection)

Another popular method is to use services with dependency injection. With dependency injection you can write loosely coupled code. When done right this will improve the flexibility and maintainability of your code.

The `PostService` we used as example before will remain almost the same except we don't declare the functions inside the class as static anymore.

```
namespace App\Services;

use App\Models\Post;

class PostService
{
    public function getPostBySlug(string $slug): Post
    {
        return Post::with('tags')
            ->where('slug', $slug)
            ->get();
    }
}
```

Next we inject the service into the constructor of the class where we want to use it. Inside the constructor we assign the object to the `$postService` class property. Now the `$postService` property will be callable in all functions within the class with `$this->postService`. While typing your IDE will already typehint the functions in your PostService class, in this case only `->getPostBySlug($slug)`.

```
namespace App\Http\Controllers;

// Include the service
use App\Services\PostService;

class PostController extends Controller
{
    // Declare the property
    protected $postService;

    // Inject the service into the constructor
    public function __construct(PostService $postService)
    {
        // Assign the service instance to the class property
        $this->postService = $postService;
    }

    public function show($slug)
    {
        // Call the method you need from the service via the class property
        $post = $this->postService->getPostBySlug($slug);

        return view('posts.show', compact('post'));
    }
}
```

More generator packages
-----------------------

[](#more-generator-packages)

Looking for more ways to speed up your workflow? Make sure to check out these packages.

- [Laravel Action Generator](https://github.com/timwassenburg/laravel-action-generator)
- [Laravel Pivot Table Generator](https://github.com/timwassenburg/laravel-pivot-table-generator)
- [Laravel Repository Generator](https://github.com/timwassenburg/laravel-repository-generator)
- [Laravel Service Generator](https://github.com/timwassenburg/laravel-service-generator)

Contributing
------------

[](#contributing)

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

1660d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2bd4841f07e2bb2c052be7b2b7edcf77a85811187657dfc0251372d4d1805f30?d=identicon)[veseluy-rodjer](/maintainers/veseluy-rodjer)

---

Top Contributors

[![timwassenburg](https://avatars.githubusercontent.com/u/75377381?v=4)](https://github.com/timwassenburg "timwassenburg (9 commits)")[![veseluy-rodjer](https://avatars.githubusercontent.com/u/23226544?v=4)](https://github.com/veseluy-rodjer "veseluy-rodjer (3 commits)")

---

Tags

phpclilaravelgeneratorartisanpatternservices

### Embed Badge

![Health badge](/badges/veseluy-rodjer-laravel-service-generator/health.svg)

```
[![Health](https://phpackages.com/badges/veseluy-rodjer-laravel-service-generator/health.svg)](https://phpackages.com/packages/veseluy-rodjer-laravel-service-generator)
```

###  Alternatives

[nunomaduro/collision

Cli error handling for console/command-line PHP applications.

4.6k331.8M8.5k](/packages/nunomaduro-collision)[timwassenburg/laravel-service-generator

Generate Laravel services

104233.1k2](/packages/timwassenburg-laravel-service-generator)[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

815412.0k48](/packages/nunomaduro-laravel-console-menu)[nunomaduro/laravel-console-task

Laravel Console Task is a output method for your Laravel/Laravel Zero commands.

2582.1M11](/packages/nunomaduro-laravel-console-task)[nunomaduro/laravel-console-summary

A Beautiful Laravel Console Summary for your Laravel/Laravel Zero commands.

662.0M3](/packages/nunomaduro-laravel-console-summary)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16255.4k7](/packages/nunomaduro-laravel-console-dusk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
