Hi folks!
I’m having some problems with scaffolding and yats.
I have my controller like that:
<?php
class Inmo extends Controller
{
function Inmo()
{
parent::Controller();
$this->load->scaffolding('properties_sale');
}
function index()
{
// Set the template valiables
$data['mensaje'] = "A Message";
// Build the thing
$this->layout->buildPage('inmo/home', $data);
}
}
?>
If I go to: http://localhost:8888/inmo/index.php/inmo/secret_word I can see the scaffolding page, but if I click to Add New Record, a 404 page is shown.
Is there any problem working with scaffolding and yats together?
Thanks!
