*/ class Currency extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable */ public function toArray($request) { return [ 'id' => $this->id, 'object' => 'currency', 'iso' => $this->iso, 'name' => $this->name, 'symbol' => $this->symbol, ]; } }