belongsTo(Product::class)->withDefault([ 'name' => '商品已下架', 'thumb' => assertUrl('products/404.jpg') ]); } public function order() { return $this->belongsTo(Order::class); } public function comment() { return $this->hasOne(Comment::class); } }