1
I have a ready form that I am trying to incorporate into a 5.2 Standard System
<form name="formEireli" id="formEireli" action="{{ url('script') }}" target="_blank" method="post">
is in the eireli/index.blade.php view, and eireli/script.php I try to access from the route:
Route::get('eireli.script', ['uses'=>'EireliController@eireli','as'=>'script']);
accessing the eireli function of the Eirelicontroller
class EireliController extends Controller
{
public function eireli()
{
return view('eireli.script');
}
}
but it’s not working, and I’m not getting the error that appears
any personal light? thanks in advance..