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.
36 lines
1.2 KiB
36 lines
1.2 KiB
<?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,
|
|
];
|
|
}
|
|
}
|
|
|