Created
May 6, 2015 18:02
-
-
Save vinicius73/eb0d652c295630c6623f to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (Controllers)
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
# app/http/controllers/front | |
<?php namespace App\Http\Controllers\Front; | |
use App\Http\Controllers; | |
abstract class FrontCtrl extends Controllers | |
{ | |
} |
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
# app/http/controllers/painel | |
<?php namespace App\Http\Controllers\Painel; | |
use App\Http\Controllers; | |
abstract class PainelCtrl extends Controllers | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment