溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Laravel中基于Artisan View擴展包如何創(chuàng)建及刪除應用視圖文件

發(fā)布時間:2021-08-31 09:29:48 來源:億速云 閱讀:113 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“Laravel中基于Artisan View擴展包如何創(chuàng)建及刪除應用視圖文件”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“Laravel中基于Artisan View擴展包如何創(chuàng)建及刪除應用視圖文件”這篇文章吧。

具體如下:

1、簡介

本擴展包添加了兩個視圖相關(guān)的Artisan命令到Laravel應用,以便我們通過Artisan命令即可創(chuàng)建和管理視圖文件,可謂是進一步解放了生產(chǎn)力。

2、安裝

還是通過Composer安裝:

composer require sven/artisan-view

安裝完成后到config/app.php中注冊服務提供者ArtisanViewServiceProvider到providers數(shù)組:

// config/app.php
'providers' => [
  ...
  Sven\ArtisanView\ArtisanViewServiceProvider::class,
];

3、使用

如果你現(xiàn)在運行 php artisan 會發(fā)現(xiàn)多出如下兩個命令,分別用于創(chuàng)建和刪除視圖文件:

- make:view
- scrap:view

創(chuàng)建視圖

在視圖根目錄views下創(chuàng)建index.blade.php視圖文件

$ php artisan make:view index

在子目錄pages下創(chuàng)建index.blade.php視圖文件

$ php artisan make:view pages.index

在自定義目錄(相對于系統(tǒng)根目錄)下創(chuàng)建視圖文件

$ php artisan make:view index --directory=custom/path

指定視圖文件擴展名

$ php artisan make:view index --extension=html

繼承一個已存在的視圖

$ php artisan make:view index --extends=app

在視圖中添加title和content部分

$ php artisan make:view index --sections=title,content

創(chuàng)建一個名為products的資源(包含index、create、edit、show視圖文件)

$ php artisan make:view products --resource

創(chuàng)建指定動作資源(index、create和edit)

$ php artisan make:view products --resource --verbs=index,create,edit

創(chuàng)建繼承自layout且包含foo、bar的資源文件

$ php artisan make:view products --resource --extends=layout --sections=foo,bar

刪除視圖

刪除視圖文件 index.blade.php

$ php artisan scrap:view index

通過.刪除子目錄視圖文件

$ php artisan scrap:view pages.index

以上是“Laravel中基于Artisan View擴展包如何創(chuàng)建及刪除應用視圖文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI