App下載

詞條

大約有 7,000 項符合查詢結果 ,庫內數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0042秒)

5291.Laravel 8 視圖

...poser 的 laravel/jetstream 拓展包:composer require laravel/jetstream php artisan jetstream:install livewire/inertiaCopy這些視圖在 resources/views/auth/passwords 中。 你可以隨意根據(jù)需要為您的應用程序自定義它們。

http://www.o2fo.com/laravel_8/laravel_8-dp5l3h5u.html

5292.Laravel 8 重置密碼后

...密碼重置令牌會在一小時后過期。你可以通過 config/auth.php 文件中的密碼重置 expire 選項對此進行修改。

http://www.o2fo.com/laravel_8/laravel_8-mt2x3h5v.html

5293.Laravel 8 命令白名單

...如果你想將命令添加到白名單,請將該命令添加到 tinker.php 配置文件中的 commands 數(shù)組:'commands' => [ // App\Console\Commands\ExampleCommand::class, ],Copy

http://www.o2fo.com/laravel_8/laravel_8-nue73h65.html

5294.Laravel 8 別名黑名單

大多數(shù)情況下,Tinker 會在你引入類時自動為其添加別名。然而,你可能不希望為某些類添加別名。你可以在 tinker.php 配置文件中的 dont_alias 數(shù)組里列舉這些類來完成此操作:'dont_alias' => [ App\Models\User::class, ],Copy

http://www.o2fo.com/laravel_8/laravel_8-5dkt3h66.html

5295.Laravel 8 生成命令

...。生成的命令將包含所有命令中默認存在的屬性和方法。php artisan make:command SendEmailsCopy

http://www.o2fo.com/laravel_8/laravel_8-idsa3h68.html

5296.Laravel 8 命令結構

... 將會自動注入所有在構造函數(shù)中帶類型約束的依賴。<?php namespace App\Console\Commands; use App\Models\User; use App\Support\DripEmailer; use Illuminate\Console\Command; class SendEmails extends Command { /** * 命令名稱及簽名 * * @var string */ protected $signature = &#...

http://www.o2fo.com/laravel_8/laravel_8-t7cp3h69.html

5297.Laravel 8 選項

...項,該選項的值將會是 true 。否則,其值將會是 false :php artisan email:send 1 --queueCopy

http://www.o2fo.com/laravel_8/laravel_8-tljs3h6f.html

5298.Laravel 8 帶值的選項

...個例子中,用戶可以像如下所時的方式傳遞該選項的值:php artisan email:send 1 --queue=default 您可以在選項名稱后指定其默認值。如果用戶沒有傳遞值給選項,將使用默認的值:email:send {user} {--queue=default}Copy

http://www.o2fo.com/laravel_8/laravel_8-1u863h6g.html

5299.Laravel 8 注冊命令

...IR__.'/MoreCommands'); // ... }Copy您亦可在 app/Console/Kernel.php 文件的 $commands 屬性中手動注冊命令的類名。當 Artisan 啟動時,該屬性里列出的所有命令都將被 服務容器 解析并通過 Artisan 注冊:protected $commands = [ Commands\SendEmails::clas...

http://www.o2fo.com/laravel_8/laravel_8-aqlw3h8q.html

5300.Laravel 8 Stub 定制

...使用 stub:publish 命令來發(fā)布最常見的定制 stub 來實現(xiàn)之:php artisan stub:publish 發(fā)布的 stub 將存放于您的應用根目錄下的 stubs 目錄中。對這些 stub 進行任何改動都將在您使用 Artisan make 命令生成相應的類的時候反映出來。

http://www.o2fo.com/laravel_8/laravel_8-bq823h8u.html

抱歉,暫時沒有相關的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

5291.Laravel 8 視圖

...poser 的 laravel/jetstream 拓展包:composer require laravel/jetstream php artisan jetstream:install livewire/inertiaCopy這些視圖在 resources/views/auth/passwords 中。 你可以隨意根據(jù)需要為您的應用程序自定義它們。

http://www.o2fo.com/laravel_8/laravel_8-dp5l3h5u.html

5292.Laravel 8 重置密碼后

...密碼重置令牌會在一小時后過期。你可以通過 config/auth.php 文件中的密碼重置 expire 選項對此進行修改。

http://www.o2fo.com/laravel_8/laravel_8-mt2x3h5v.html

5293.Laravel 8 命令白名單

...如果你想將命令添加到白名單,請將該命令添加到 tinker.php 配置文件中的 commands 數(shù)組:'commands' => [ // App\Console\Commands\ExampleCommand::class, ],Copy

http://www.o2fo.com/laravel_8/laravel_8-nue73h65.html

5294.Laravel 8 別名黑名單

大多數(shù)情況下,Tinker 會在你引入類時自動為其添加別名。然而,你可能不希望為某些類添加別名。你可以在 tinker.php 配置文件中的 dont_alias 數(shù)組里列舉這些類來完成此操作:'dont_alias' => [ App\Models\User::class, ],Copy

http://www.o2fo.com/laravel_8/laravel_8-5dkt3h66.html

5295.Laravel 8 生成命令

...。生成的命令將包含所有命令中默認存在的屬性和方法。php artisan make:command SendEmailsCopy

http://www.o2fo.com/laravel_8/laravel_8-idsa3h68.html

5296.Laravel 8 命令結構

... 將會自動注入所有在構造函數(shù)中帶類型約束的依賴。<?php namespace App\Console\Commands; use App\Models\User; use App\Support\DripEmailer; use Illuminate\Console\Command; class SendEmails extends Command { /** * 命令名稱及簽名 * * @var string */ protected $signature = &#...

http://www.o2fo.com/laravel_8/laravel_8-t7cp3h69.html

5297.Laravel 8 選項

...項,該選項的值將會是 true 。否則,其值將會是 false :php artisan email:send 1 --queueCopy

http://www.o2fo.com/laravel_8/laravel_8-tljs3h6f.html

5298.Laravel 8 帶值的選項

...個例子中,用戶可以像如下所時的方式傳遞該選項的值:php artisan email:send 1 --queue=default 您可以在選項名稱后指定其默認值。如果用戶沒有傳遞值給選項,將使用默認的值:email:send {user} {--queue=default}Copy

http://www.o2fo.com/laravel_8/laravel_8-1u863h6g.html

5299.Laravel 8 注冊命令

...IR__.'/MoreCommands'); // ... }Copy您亦可在 app/Console/Kernel.php 文件的 $commands 屬性中手動注冊命令的類名。當 Artisan 啟動時,該屬性里列出的所有命令都將被 服務容器 解析并通過 Artisan 注冊:protected $commands = [ Commands\SendEmails::clas...

http://www.o2fo.com/laravel_8/laravel_8-aqlw3h8q.html

5300.Laravel 8 Stub 定制

...使用 stub:publish 命令來發(fā)布最常見的定制 stub 來實現(xiàn)之:php artisan stub:publish 發(fā)布的 stub 將存放于您的應用根目錄下的 stubs 目錄中。對這些 stub 進行任何改動都將在您使用 Artisan make 命令生成相應的類的時候反映出來。

http://www.o2fo.com/laravel_8/laravel_8-bq823h8u.html

抱歉,暫時沒有相關的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程