My Laravel App doesn't work on Facebook, seems like it gets confused on the routes.
This is my routes.php:
Route::get('ingresar', array('as' => 'ingresar', 'uses' => 'ingresar@index'));
This is my controller ingresar.php:
class Ingresar_Controller extends Base_Controller{
public $restful = true;
public function get_index() {
echo "Controller Ingresar";
}
}
When I open my app on Facebook I get 404 error.
Any clue?
Thanks in advance!