php – 扩展核心并在Laravel的每个页面中显示数据

按照指南,我有

1)创建服务提供商

class ViewComposerServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     *
     * @return void
     */
    public function boot()
    {
        view()->composer('template',function ($view) {
            $view->with('series_list',Series::all());
        });
    }

    /**
     * Register the application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}

2)注册提供商

App\Providers\ViewComposerServiceProvider::class,

3)并在模板上回显变量

{!! var_dump($series_list)  !!}

问题是 :

Route::get('/','HomeController@index');
Route::get('product/view/{id}','ProductController@view');
Route::get('product/detail/{id}','ProductController@detail');
Route::get('/page/contact','PageController@contact');

PageController和HomeController可以显示$series_list,但ProductController将返回错误

Undefined variable: series_list in the template

这是ProductController:

class ProductController extends Controller
{
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        //$this->middleware('auth');
    }

    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function view($id = 1)
    {
        return view('product/list');
    }

    public function detail($id = 1)
    {
        return view('product/detail');
    }
}

非常感谢您的帮助.

另一种方式,有点短
class AppServiceProvider extends ServiceProvider
{
    // other methods

    public function boot()
    {
        $series = Series::all();
        view()->share('series_list',$series);
    }

    // other methods

}

相关文章

[laravel] laravel的数据库配置 找到程序目录结构下.env文件 配置基本的数据库连接信息 DB_HOST=127.0....
[Laravel] Laravel的基本HTTP路由 使用Laravel的基本路由,实现get请求响应,找到文件app/Http/routes....
如果说laravel框架的核心是什么,那么无疑是服务容器。理解服务容器的概念,对于我们使用laravel太重要...
网上有很多解析laravel中间件的实现原理,但是不知道有没有读者在读的时候不明白,作者是怎么想到要用a...
laraveli添加一个或多个用户表,以admin为例。 部分文件内容可能需要根据实际情况修改 创建一个Admin模...
TL;DR: 本文介绍 Laravel 的 FastExcel 组件,文中会对 PHP generators 速览,并给出如何在节约内存的同...