Using Custom Layout blade for each panel provider

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') in the panel provider.
Is there a way of doing this?
Solution
you mean this?

$panel
    ->topNavigation()
    ->topbar(false)
Was this page helpful?