whereNull('order_id'); } public function release() { $this->update(['order_id' => null]); } public function concert() { return $this->belongsTo(Concert::class); } public function getPriceAttribute() { return $this->concert->ticket_price; } }