Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Last active August 29, 2015 14:20
Show Gist options
  • Save vinicius73/d1ef4857f7d97096c2c3 to your computer and use it in GitHub Desktop.
Save vinicius73/d1ef4857f7d97096c2c3 to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (Controllers -> Front)
# app/http/controllers/Front/FrontCtrl.php
<?php namespace App\Http\Controllers\Front;
use App\Http\Controllers\Controller;
abstract class FrontCtrl extends Controller
{
# implemente as suas regras e/ou métodos que serão válidas/usadas em todos os controllers do seu "front"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment