your route is only for "get" -->
Route::get
if you post, you should use -->
Route::post
or for both
Route::any
Or keep the get route and change the form opening to
{{ Form::open(array('url'=>'tool/url_translate', 'method' => 'GET')) }}
Laravel defaults to POST.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community