Created
May 6, 2015 20:27
-
-
Save vinicius73/affb1c47456ae8b264d3 to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (view namespaces)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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