Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Fatal error: Class 'App\Models\Site\NoticiaModel' not found in C:\xampp\htdocs\ManagerContent\App\Controllers\Site\HomeController.php on line 13
- ------------------------------- MODEL ---------------------------------------
- <?php
- namespace App\Models\Site;
- class NoticiaModel extends \ActiveRecord\Model {
- static $Table = 'noticia';
- }
- ------------------------------- CONTROLLER ---------------------------------------
- <?php
- namespace App\Controllers\Site;
- use \App\Controllers\BaseController as Base;
- use \App\Models\Site\NoticiaModel as Noticias;
- class HomeController extends Base {
- public function index() {
- // List Noticias
- $Noticias = Noticias::all();
- dump($Noticias);
- $Dados = ['titulo' => 'Home'];
- $Template = $this->Twig->loadTemplate('Home.html');
- $Template->display($Dados);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement