ok
Direktori : /home2/selectio/www/limpiar.in.net/app/Http/Resources/V2/ |
Current File : /home2/selectio/www/limpiar.in.net/app/Http/Resources/V2/BusinessSettingCollection.php |
<?php namespace App\Http\Resources\V2; use Illuminate\Http\Resources\Json\ResourceCollection; class BusinessSettingCollection extends ResourceCollection { public function toArray($request) { return [ 'data' => $this->collection->map(function($data) { return [ 'type' => $data->type, 'value' => $data->type == 'verification_form' ? json_decode($data->value) : $data->value ]; }) ]; } public function with($request) { return [ 'success' => true, 'status' => 200 ]; } }