Remove the skin_view() call from base Controller class

This commit is contained in:
Nabeel Shahzad
2018-03-11 18:03:15 -05:00
parent f05e37767f
commit 98ebd5e358

View File

@@ -20,6 +20,6 @@ class Controller extends BaseController
*/
public function view($template, array $vars=[], $merge_data=[])
{
return skin_view($template, $vars, $merge_data);
return view($template, $vars, $merge_data);
}
}