*/ use HasFactory, SoftDeletes; protected $fillable = [ 'order_id', 'service_file_id', 'service_type', 'placement', 'setup_amount', 'amount', 'amount_price', 'notes', ]; protected $appends = [ 'service_details', 'price', ]; public function getPriceAttribute(): float { return number_format($this->amount * $this->amount_price, 2); } public function getServiceDetailsAttribute(): string { $file = $this->serviceFile; return $file->name.', '.$this->placement.', '.$file->width.' W, '.$file->height.' H'; } /** * @return BelongsTo */ public function order(): BelongsTo { return $this->belongsTo(Order::class); } /** * @return BelongsTo */ public function serviceFile(): BelongsTo { return $this->BelongsTo(ServiceFile::class); } }