mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 20:44:19 +00:00
27 lines
596 B
PHP
27 lines
596 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Models\CurrencyRate;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class CurrencyResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'country' => new CountryResource($this->country),
|
|
'name' => $this->name,
|
|
'short_code' => $this->short_code,
|
|
'symbol' => $this->symbol,
|
|
];
|
|
}
|
|
}
|