استاد ببخشید من سوال پشت سوال میپرسم.
من الان با توجه به توضیحات ویدیو cache نوشتم، اما ارور Serialization of 'PDO' is not allowed میگیرم. میشه کمکم کنید؟
$cachKeyName = 'cycles_for_cycle_table' ;
$data = Cache::remember($cachKeyName , now()->addSeconds(10) , function (){
sleep(3);
return Cycle::query()->latest()
->withCount('factors')
->withSum('factors', 'amount');
});
return $data;