Wednesday, February 26, 2020

Laravel: Loading multiple views from the same controller

$view = View::make('header_admin_template'); $view->nest('home_view', 'home_view'); $view->nest('footer_admin_template', 'footer_admin_template'); return $view;

https://laravel.io/forum/03-18-2014-loading-multiple-views-form-the-same-controller