I'm getting an error :
"Call to undefined method Illuminate\Database\SqlServerConnection::find()"
I'm trying to update a table that was executed using stored procedure.
public function update(Request $request)
{
$cont = DB::find($request->ContainerId);
$cont->update($request->all());
return back();
}
I wanted to update a record in SQL Server but no luck at all.