Laravel用命令创建海关包

问题描述 投票:0回答:1

我希望在Laravel中建立一个通用的预约系统,我想在我的其他项目中使用它。有没有办法通过创建自定义命令来实现?例如,php artisan make:auth创建完整的登录,注册,忘记和重置密码功能。我想做同样的事情,比如php artisan appoitment : make,它应该在Laravel安装中创建模型,控制器和数据库迁移

php laravel-5 command artisan
1个回答
0
投票
  1. php artisan make:command {command name}。您可以在app / console / commands目录中看到{command name}文件。
  2. 将$签名更改为约会:make。
  3. 将命令类添加到app / console / Kernel.php命令列表中。

例如:

php artisan make:command AppoitmentCommand

In Kernel.php : $commands = [
    AppoitmentCommand::class
];

php artisan //you can see all commands
© www.soinside.com 2019 - 2024. All rights reserved.