$this->getTitle(), 'body' => $this->getBody(), 'status' => $this->getStatus(), 'icon' => $this->getIcon(), ]; } public function send(): static { $alerts = session()->get('alert-banners', []); $alerts[] = $this->toArray(); session()->flash('alert-banners', $alerts); return $this; } }