*/ public function via(object $notifiable): array { return ['fcm']; } public function toFcm(object $notifiable): array { return [ 'to' => $notifiable->token_fcm, 'notification' => [ 'title' => 'Notification Title', 'body' => 'Notification Body', 'image' => '', // Optional image URL ], ]; } }