There is no standard procedure mentioned in documentation that how to call a stored procedure in MYSQL in laravel with Eloquent syntax.
I mean is there any way to call stored procedure in mysql with help of eloquent syntax like
$result = StoredProcedures::my_custom_procedure(param1, param2);
return view('welcome')->with('result',$result);
Is there any way to call and fetch results from stored procedures with pure eloquent syntax(purely eloquent way).
Thanks. Small examples are highly encouraged .