D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
app
/
Http
/
Resources
/
Filename :
NotificationResource.php
back
Copy
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class NotificationResource extends JsonResource { public $info; public function __construct($info) { parent::__construct($info); $this->info = $info; } /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) : array { return [ "notification_fcm_secret_key" => $this->info['notification_fcm_secret_key'], "notification_fcm_public_vapid_key" => $this->info['notification_fcm_public_vapid_key'], "notification_fcm_api_key" => $this->info['notification_fcm_api_key'], "notification_fcm_auth_domain" => $this->info['notification_fcm_auth_domain'], "notification_fcm_project_id" => $this->info['notification_fcm_project_id'], "notification_fcm_storage_bucket" => $this->info['notification_fcm_storage_bucket'], "notification_fcm_messaging_sender_id" => $this->info['notification_fcm_messaging_sender_id'], "notification_fcm_app_id" => $this->info['notification_fcm_app_id'], "notification_fcm_measurement_id" => $this->info['notification_fcm_measurement_id'], ]; } }