美文网首页
View 视图 (第三方包)

View 视图 (第三方包)

作者: 爱折腾的傻小子 | 来源:发表于2019-01-08 11:03 被阅读20次
    • 第三方包中使用自己视图
    // 告诉 laravel 视图所在位置
    // 服务注册者 boot 方法中
    /**
     * Perform post-registration booting of services.
     *
     * @return void
     */
    public function boot()
    {
        // __DIR__ 当前文件所在位置
        $this->loadViewsFrom(__DIR__.'/path/to/views', 'courier');
    }
    
    // 包中加载视图 使用 :: 形式
    view('courier::admin');
    

    相关文章

      网友评论

          本文标题:View 视图 (第三方包)

          本文链接:https://www.haomeiwen.com/subject/qdrvrqtx.html