restore composer.json, add mysqli extension
This commit is contained in:
32
app/Http/Resources/OrderProductResource.php
Executable file
32
app/Http/Resources/OrderProductResource.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<?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),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user