global variable for all controller and views

后端 未结 16 2111
Happy的楠姐
Happy的楠姐 2020-11-27 15:54

In Laravel I have a table settings and i have fetched complete data from the table in the BaseController, as following

public function __construct() 
{
             


        
16条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 16:11

    View::share('site_settings', $site_settings);
    

    Add to

    app->Providers->AppServiceProvider file boot method

    it's global variable.

提交回复
热议问题