Nurse.php 389 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-10-4
  6. * Time: 下午4:35
  7. */
  8. namespace App\Models;
  9. class Nurse extends BaseModel
  10. {
  11. protected $appends = ['today'];
  12. public function getTodayAttribute()
  13. {
  14. $id = $this->attributes['id'];
  15. return OrderNurse::where(['nurse_id'=>$id,'created_at'=>['>',date('Y-m-d 00:00:00',time())]])->count();
  16. }
  17. }