ronssij / laravel-actions
控制器的一个简单动作服务。
dev-master
2019-08-08 03:11 UTC
This package is auto-updated.
Last update: 2024-09-08 16:14:26 UTC
README
这是一个简单的 Laravel 控制器动作服务。
安装
composer require ronssij/laravel-actions
用法
php artisan make:action YourActionClass
此命令将在默认文件夹 App\Actions
中生成一个特定文件。
namespace App\Actions; class YourActionClass { /** * Execute the action and return a result. * * @return mixed */ public function execute () { // Execute the action. } }