🍲dfcv🏰dd⋉(● ∸ ●)⋊@% PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!PK.W]?BDDShopProductNotification.phpnu[data = $data; $this->className= ShopProductNotification::class; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [DbNotification::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'notification_type_id' => $this->data['notification_type_id'], 'data' => [ 'id' => $this->data['product']['id'], 'name' => $this->data['product']['name'], 'status' => $this->data['status'], 'type' => $this->data['product_type'] ] ]; } } PK.W]O,OrderNotification.phpnu[data = $order_notification; $this->className= OrderNotification::class; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [DbNotification::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'notification_type_id' => $this->data['notification_type_id'], 'data' => [ 'order_id' => $this->data['order_id'], 'order_code' => $this->data['order_code'], 'user_id' => $this->data['user_id'], 'seller_id' => $this->data['seller_id'], 'status' => $this->data['status'] ] ]; } } PK.W] PayoutNotification.phpnu[data = $data; $this->className= PayoutNotification::class; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [DbNotification::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'notification_type_id' => $this->data['notification_type_id'], 'data' => [ 'user_id' => $this->data['user']['id'], 'user_type' => $this->data['user']['user_type'], 'name' => $this->data['user']['name'], 'payment_amount' => $this->data['amount'], 'status' => $this->data['status'] ] ]; } } PK.W]liOPasswordResetRequest.phpnu[token = $token; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $url = env('APP_URL') . '/password/reset/' . $this->token; return (new MailMessage) ->line('You are receiving this email because we received a password reset request for your account.') ->action('Reset Password', $url) ->line('If you did not request a password reset, no further action is required.'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } } PK.W] ''$AppEmailVerificationNotification.phpnu[verification_code; return (new MailMessage) ->view('emails.app_verification', ['array' => $array]) ->subject(translate('Email Verification - ').env('APP_NAME')); } public function toArray($notifiable) { return [ // ]; } } PK.W]皅@@CustomNotification.phpnu[data = $data; $this->className= CustomNotification::class; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [DbNotification::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { // } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'notification_type_id' => $this->data['notification_type_id'], 'data' => [ 'link' => $this->data['link'] ] ]; } } PK.W]6DbNotification.phpnu[id; $contents = $notificationData->data; $className = $notificationData->className; $notifiableClass= new $notificationData->className($contents); $notifyData = $notifiableClass->toArray($notifiable); $notificationTypeID = $notifyData['notification_type_id']; $data = $notifyData['data']; unset($notifyData); return $notifiable->routeNotificationFor('database')->create([ 'id' => $notification_id, 'notification_type_id' => $notificationTypeID, 'notifiable_type'=> \Auth::user()->id, 'type' => $className, 'data' => $data, 'read_at' => null, ]); } } PK.W]'\rPP!EmailVerificationNotification.phpnu[verification_code = encrypt($notifiable->id); $notifiable->save(); $array['view'] = 'emails.verification'; $array['subject'] = translate('Email Verification'); $array['content'] = translate('Please click the button below to verify your email address.'); $array['link'] = route('email.verification.confirmation', $notifiable->verification_code); return (new MailMessage) ->view('emails.verification', ['array' => $array]) ->subject(translate('Email Verification - ') . env('APP_NAME')); } public function toArray($notifiable) { } } PK.W]: ShopVerificationNotification.phpnu[data = $data; $this->className= ShopVerificationNotification::class; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [DbNotification::class]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'notification_type_id' => $this->data['notification_type_id'], 'data' => [ 'name' => $this->data['shop']['name'], 'id' => $this->data['shop']['id'], 'status'=> $this->data['status'] ] ]; } } PK.W]?BDDShopProductNotification.phpnu[PK.W]O,OrderNotification.phpnu[PK.W] lPayoutNotification.phpnu[PK.W]liO;PasswordResetRequest.phpnu[PK.W] ''$AppEmailVerificationNotification.phpnu[PK.W]皅@@"CustomNotification.phpnu[PK.W]6'DbNotification.phpnu[PK.W]'\rPP!+EmailVerificationNotification.phpnu[PK.W]: P0ShopVerificationNotification.phpnu[PK +7