I want to be able to use a custom app.blade.php layout for different panel types. Customers get a more website-styled one and admin panels get a more admin-style panel. I would expect to be able to do something like
return $panel->layout('layouts.customer')
return $panel->layout('layouts.customer')
in the panel provider. Is there a way of doing this?