Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Http
/
Resources
:
PaymentMethodResource.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class PaymentMethodResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request */ public function toArray($request): array { return [ 'id' => $this->id, 'name' => $this->name, 'company_id' => $this->company_id, 'type' => $this->type, 'company' => $this->when($this->company()->exists(), function () { return new CompanyResource($this->company); }), ]; } }