Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Last active August 29, 2015 14:20
Show Gist options
  • Save vinicius73/5f155f90b69c2f328a36 to your computer and use it in GitHub Desktop.
Save vinicius73/5f155f90b69c2f328a36 to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (Controllers)
<?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