I have created a procedure for insertion but dont know how to call parameters \"name\" and \"path\" in controller and model
Stored procedure:
CREATE
The second takes a list of parameters that can be passed as below
DB::select('call insert_document_details(?,?)',array($name,$path));
or
DB::statement('call insert_document_details(' . DB::raw($name) . ',' . DB::raw($path) . ')');