I have a very mysterious problem. One of my routes is suddenly not working, all other routes works fine.
I get no errors, just an empty white blank page.
Even if i just return a string, it gives me nothing
public function create()
{
return "Create";
}
The route:
Route::get('/start/user/create', array(
'as' => 'user/create',
'uses' => 'UserController@create'
));
The link:
<a class="btn btn-success pull-right" href="{{ URL::route('user/create') }}"> {{Lang::get('strings.create_customer')}}</a>
Im using MAMP and restarted the server and nothing helps.
EDIT: I tryed to make a completely new route, function in controller and view that simply just output a string. Its the same, it only gives me blank page.
EDIT 2: My application realy have som problem with the route start/user/create
. If i change it to start/user/bullshit/create
for example, everything works. So what can this be? Are there som kind of cache somewhere that always gives me blank pages with the route start/user/create
. Its the only route that i have problems with.
routes.php
file. – Marwelln'as' => 'user.create'
? – lozadaOmr