Last active
August 29, 2015 14:20
-
-
Save vinicius73/5f155f90b69c2f328a36 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
<?php | |
# Estendendo PainelCtrl e FrontCtrl você mantem seu sistema organizado, | |
# podendo implementar regras comuns aos seus controllers, deixando seu código mais legivel e flexivel | |
# Controller 1 (Painel) | |
# app/http/controllers/Painel/ClientsCtrl.php | |
namespace App\Http\Controllers\Painel; | |
class ClientsCtrl extends PainelCtrl {} | |
# Controller 1 (Front) | |
# app/http/controllers/Front/ClientsCtrl.php | |
namespace App\Http\Controllers\Front; | |
class ClientsCtrl extends FrontCtrl {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment