How to set view file path in laravel?

后端 未结 3 788
半阙折子戏
半阙折子戏 2020-12-18 08:04

I have a directory structure for laravel app like this:

app/
   admin/
      controllers/
      views/ -> for admin views
   ...
   views/ -> for front         


        
3条回答
  •  萌比男神i
    2020-12-18 09:04

    In Laravel 5.5, other solutions did not work. In boot method of a service provider

    View::getFinder()->prependLocation(
     resource_path('views') . '/theme'
    );
    

提交回复
热议问题