public function myMonthApts()
{
return $this->appointments()
->whereIn('status_id', [3,4])
->whereYear('created_at', Carbon::now()->year)
->whereMonth('created_at', Carbon::now()->month)
->count();
}