Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Last active August 29, 2015 14:20
Show Gist options
  • Save vinicius73/ef99e73399031e279b26 to your computer and use it in GitHub Desktop.
Save vinicius73/ef99e73399031e279b26 to your computer and use it in GitHub Desktop.
Como organizar: Painel e Front no Laravel 5 (Controllers -> Painel)
# app/http/controllers/Painel/PainelCtrl.php
<?php namespace App\Http\Controllers\Painel;
use App\Http\Controllers\Controllers;
abstract class PainelCtrl extends Controller
{
# implemente as suas regras e/ou métodos que serão válidas/usadas em todos os controllers do seu "painel"
}
@brunowego
Copy link

Fix wrong class name: 😄

use App\Http\Controllers\Controller;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment