Hi,
We are using below procedure for a Category card on Dashboard:
use Illuminate\Support\Facades\DB;
...
$query = DB::select("
CALL `get_results`
(
1,
'".$startdate."',
'".$enddate."',
'".$param1."',
'".$param2."'
)
");
return $query;
Getting following error: Call undefined categoryBucket() method. But procedure is working with a table for example.
Thank you,