There are a few issues I see.
Laravel will redirect all trailing slashes to no trailing slashes.
'http:/volcano/public/postComision/' ,
to just
'http:/volcano/public/postComision',
Secondly, you are sending a POST request but your route is catching a GET request.
Change Route::get to Route::post
To get the title you should also be able to do
$comision->actividad = Input::get('title');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community