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