I need to execute a stored procedure after my form submits data. I have the stored procedure working like I want it, and I have my form working properly. I just do not know
If your stored procedure always returns something then you can go with
DB::select("exec StoredProcedure '1','A','PARAM');
Otherwise (if there is no response from the SP) it will throw an exception. In that case I recommend using
DB::statetment("exec StoredProcedure '1','A','PARAM'");