'array', 'background_settings' => 'array', 'is_default' => 'boolean', 'is_active' => 'boolean', 'page_width_mm' => 'integer', 'page_height_mm' => 'integer', ]; } public function creator(): BelongsTo { return $this->belongsTo(User::class, 'created_by'); } public function invoices(): HasMany { return $this->hasMany(Invoice::class); } }