*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'artist_id' => $this->artist_id, 'name' => $this->name, 'email' => $this->email, 'phone' => $this->phone, 'role' => $this->role, 'is_primary' => (bool) $this->is_primary, 'receives_briefing' => (bool) $this->receives_briefing, 'receives_infosheet' => (bool) $this->receives_infosheet, ]; } }