RechargeConfigurationResource.php 509 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Http\Resources;
  3. use Illuminate\Http\Resources\Json\JsonResource;
  4. class RechargeConfigurationResource extends JsonResource
  5. {
  6. /**
  7. * Transform the resource into an array.
  8. *
  9. * @param \Illuminate\Http\Request $request
  10. * @return array
  11. */
  12. public function toArray($request)
  13. {
  14. $model = $this->resource;
  15. $data = [
  16. 'area_name' => $model->areas->name,
  17. ];
  18. return array_merge(parent::toArray($request), $data);
  19. }
  20. }