*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'valid_from' => $this->valid_from?->format('Y-m-d'), 'valid_to' => $this->valid_to?->format('Y-m-d'), 'is_default' => (bool) $this->is_default, ]; } }