ndarproj
ndarproj
### Is your feature request related to a problem? RuntimeException with message 'This database engine does not support upserts. ### Describe the solution you'd like batch upsert https://laravel.com/docs/8.x/eloquent#upserts ### Describe...
### What happened? I am using the latest version of laravel which is Laravel v10.24.0 (PHP v8.1.10) and i am getting an error i have this code on head ```...
``` $multiLineChartModel = $aggregatedData->reduce( function ($chartModel, $data) { // Assuming $data->date_interval is your column category (x-axis) $chartModel->addSeriesPoint('Notified Users', $data->date_interval, $data->total_sent); $chartModel->addSeriesPoint('Opted-Out Users', $data->date_interval, $data->total_not_sent); $chartModel->addSeriesPoint('Clicks', $data->date_interval, $data->total_open_count); return $chartModel; },...