⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cleanexg
/
public_html
/
core
/
app
/
Notifications
/
View File Name :
PushDemo.php
title = $title; $this->message = $message; $this->buttonText = $buttonText; $this->buttonURL = $buttonURL; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [WebPushChannel::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toWebPush($notifiable, $notification) { $bex = BasicExtra::firstOrFail(); $push = (new WebPushMessage) ->title($this->title) ->icon('assets/front/img/' . $bex->push_notification_icon) ->action($this->buttonText, $this->buttonURL); if (!empty($this->message)) { $push = $push->body($this->message); } return $push; } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }