*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'organisation_id' => $this->organisation_id, 'name' => $this->name, 'color' => $this->color, 'sort_order' => $this->sort_order, 'is_active' => (bool) $this->is_active, 'created_at' => optional($this->created_at)->toIso8601String(), 'updated_at' => optional($this->updated_at)->toIso8601String(), ]; } }