Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
app
/
Http
/
Resources
:
OrganizationResource.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Http\Resources; use Illuminate\Http\Request; use Illuminate\Http\Resources\Json\JsonResource; class OrganizationResource extends JsonResource { public function toArray(Request $request): array { return [ 'id' => $this->id, 'full_name' => $this->full_name, 'short_name' => $this->short_name, 'inn' => $this->inn, 'kpp' => $this->kpp, ]; } }