*/ use HasFactory, SoftDeletes; protected $fillable = [ 'order_id', 'service_file_id', 'service_type', 'placement', 'width', 'height', 'code', 'setup_amount', 'logo_name', 'amount', 'amount_price', 'notes', ]; /** * @return BelongsTo */ public function order(): BelongsTo { return $this->belongsTo(Order::class); } /** * @return BelongsTo */ public function serviceFile(): BelongsTo { return $this->BelongsTo(ServiceFile::class); } }