Hi i hope you can help me with this. I couldn't find an explanation in the documentation but I had this problem:
if I put the controller like this I got an error telling me the method was not defined
<a href={{ action('MovieController@create') }}>Create Movie</a></h3>
so I get to solve it like this, puting the complete namespace
<a href={{ action('App\Http\Controllers\MovieController@create') }}>Create Movie</a></h3>
My question is; is there any way I don't have to put the complete namespace to get it to work?