belongsTo(User::class)->withDefault(); } public function lottery() { return $this->belongsTo(Lottery::class)->withDefault(); } public function gift() { return $this->belongsTo(LotteryGift::class)->withDefault(); } public function getOrderAttribute() { return Order::where('item_id', $this->id)->where('type', 'lottery')->first(); } }