昨天除了抱怨我沒看到法札末場之外,我們還用了個指令得到一些檔案:)
php artisan make:auth
Artisan是Laravel內建的指令工具,用來協助開發網站,使用指令前依然要記得先進入workspace:
// 複習個進入workspace的指令
docker exec -it laradock_workspace_1 bash
// 查閱可用的Artisan指令
[php] artisan list
// 查閱各指令的輔助說明
[php] artisan help make:auth
[php] artisan make:auth -h
官網上是要加php,不過我自己試過直接使用artisan list
也有一樣的功能,所以就把php括起來。
Artisan是自動化工具,在根目錄可以看到一個叫artisan
的檔案,這就是Artisan的本體,一樣是PHP檔。
它內建一般開發者常用的功能或是生成常用文件,可以減少開發所花的時間。比方昨天我們用的指令,就會生成登入、註冊認證需要的文件跟相應的修改。
除了內建的指令之外,也可以自己新增指令使用。Artisan就有個指令是為了新增指令用的:
[php] artisan make:command YourCommandName
使用後會在app/Console
中發現一個新資料夾叫Cammands,只要用make:command
生成的指令文件都會被放在這裡。
指令結構:
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class Test extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*
* 預設是
* protected $signature = 'command:name';
* 這裡是放指令名稱的:)
*
*/
protected $signature = 'command:test_1';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
}
}
不過今天我們只改名稱,沒注意到註解的回頭去看一下:)
寫好要做的事情後,還需要到app/Console
目錄下的Kernel.php
註冊,Artisan才能使用。
要注意斜線的方向喔:)
存檔後再重新下一次php artisan list
,就可以看到剛才做出來的指令了。