frankliniwobi/laravel-action-command

A Laravel package to generate Action classes via Artisan
1,765 1
Install
composer require frankliniwobi/laravel-action-command
Latest Version:v1.0.0
PHP:^8.3
License:MIT
Last Updated:Apr 8, 2026
Links: GitHub  ·  Packagist
Maintainer: frankliniwobi

Laravel Action Command

A simple Laravel package that adds a make:action Artisan command to scaffold Action classes.

Installation

composer require frankliniwobi/laravel-action-command

Laravel's auto-discovery will register the service provider automatically.

Usage

# Creates app/Actions/UserStoreAction.php
php artisan make:action UserStore

# Also works with the full name
php artisan make:action UserStoreAction

Generated file

<?php

namespace App\Actions;
use Illuminate\Support\Facades\DB;

final readonly class UserStoreAction
{
    /**
     * Execute the action.
     */
    public function handle(): void
    {
        DB::transaction(function (): void {
            // action
        });
    }
}

Customizing the Stub

Publish the stub to your project so you can tailor the generated file to your needs:

php artisan vendor:publish --tag=laravel-action-stubs

This copies laravel-action.stub to your project's stubs/ directory. Edit it freely — the command will use your published version automatically.

License

Laravel Action Command was created by Iwobi Okwudili Frank under the MIT license.

Related Packages

elimuswift/db-exporter

Export your database quickly and easily as a Laravel Migration and all the data...

4,696 36
nwidart/db-exporter

Export your database quickly and easily as a Laravel Migration and all the data...

39,135 377
rap2hpoutre/create-user-command

Create a user with artisan command

12,952 20