33 lines
838 B
PHP
Executable File
33 lines
838 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class OrderProductResource extends JsonResource
|
|
{
|
|
public static $wrap = false;
|
|
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
$lang = $request->header('Accept-Language') ?? 'ru';
|
|
|
|
// get currency from cache
|
|
$currency = cache()->get('currency');
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->product->name[$lang],
|
|
'count' => $this->count,
|
|
'price' => ceiling($this->final_price * $currency->dollar, 100),
|
|
'total_price' => ceiling($this->final_price * $this->count * $currency->dollar, 100),
|
|
];
|
|
}
|
|
}
|