- Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.26, 8.2.0 - 8.2.13, 8.3.0
- Fatal error: Uncaught Error: Class "App\Models\CategoryTask" not found in /in/IaIpD:5
Stack trace:
#0 {main}
thrown in /in/IaIpD on line 5
Process exited with code 255.
<?php
//Tinker away!
use App\Models\CategoryTask;
$org_category_task_count = CategoryTask::where('organisation_id', 4)
->whereNull('deleted_at')
->get()
->countBy('checklist_category_id');
return $org_category_task_count;