Edit File: HyperpayBrandsResource.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class HyperpayBrandsResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { return [ 'id' => $this->id, 'name' => $this->name, 'brand' => $this->brand, 'image' => $this->imagePath ]; } }
Back to File Manager