Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Created May 6, 2015 20:27
Show Gist options
  • Save vinicius73/affb1c47456ae8b264d3 to your computer and use it in GitHub Desktop.
Save vinicius73/affb1c47456ae8b264d3 to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (view namespaces)
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider {
//...
public function boot()
{
//...
$this->loadViewsFrom(base_path('resources/views/painel'), 'painel');
$this->loadViewsFrom(base_path('resources/views/site'), 'site');
//...
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment