Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Created May 6, 2015 18:02
Show Gist options
  • Save vinicius73/eb0d652c295630c6623f to your computer and use it in GitHub Desktop.
Save vinicius73/eb0d652c295630c6623f to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (Controllers)
# app/http/controllers/front
<?php namespace App\Http\Controllers\Front;
use App\Http\Controllers;
abstract class FrontCtrl extends Controllers
{
}
# 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