📅  最后修改于: 2022-03-11 14:54:22.683000             🧑  作者: Mango
public function myMonthApts()
{
return $this->appointments()
->whereIn('status_id', [3,4])
->whereYear('created_at', Carbon::now()->year)
->whereMonth('created_at', Carbon::now()->month)
->count();
}