Skip to content

Latest commit

 

History

History
executable file
·
40 lines (26 loc) · 1.24 KB

README.md

File metadata and controls

executable file
·
40 lines (26 loc) · 1.24 KB

采用版本 :Laravel Framework 8.64.0

Build Status Total Downloads Latest Stable Version License

About Laravel

常用 artisan 命令

  • 创建控制器

** 下面命令在这个位置 App/Http/Controller/Admin/LoginController 生成一个控制器 **

php artisan make:controller Admin/LoginController

  • 创建Request表单Validator验证过滤器

** 下面命令在这个位置 App/Http/Requests/Admin/AccountCreate 生成一个表单验证器 **

php artisan make:request Admin/AccountCreate

  • 创建Model模型

** 下面命令在这个位置 App/Models/Admin 生成一个模型 **

php artisan make:model Admin