- 第三方包中使用自己视图
// 告诉 laravel 视图所在位置
// 服务注册者 boot 方法中
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
// __DIR__ 当前文件所在位置
$this->loadViewsFrom(__DIR__.'/path/to/views', 'courier');
}
// 包中加载视图 使用 :: 形式
view('courier::admin');
网友评论