You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
user_center/app/Http/Resources/CarSeries.php

37 lines
1.2 KiB

4 years ago
<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class CarSeries extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'car_sub_brand_id' => $this->car_sub_brand_id,
'name' => $this->name,
'series' => $this->series,
'level' => $this->level,
'externalPanelPrice' => $this->externalPanelPrice,
'internalPanelPrice' => $this->internalPanelPrice,
'externalPaintPrice' => $this->externalPaintPrice,
'internalPaintPrice' => $this->internalPaintPrice,
'externalUnderPrice' => $this->externalUnderPrice,
'internalUnderPrice' => $this->internalUnderPrice,
'externalPolishPrice' => $this->externalPolishPrice,
'internalPolishPrice' => $this->internalPolishPrice,
'externalRepairPrice' => $this->externalRepairPrice,
'internalRepairPrice' => $this->internalRepairPrice,
'externalOutreachPrice' => $this->externalOutreachPrice,
];
}
}