belongsTo(Customer::class, 'customer_id', 'id'); } public function lottery() { return $this->belongsTo(Lottery::class, 'lottery_id', 'id'); } public function getCdateShowAttribute() { if (!$this->cdate) { return '-'; } if ($this->cdate == date('Ymd')) { return '今日'; } if ($this->cdate == date('Ymd', strtotime('-1 day'))) { return '昨日'; } return date('Y-m-d', strtotime($this->cdate)); } }