33 lines
827 B
PHP
33 lines
827 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\V2;
|
|
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
|
|
class CurrencyCollection extends ResourceCollection
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'data' => $this->collection->map(function($data) {
|
|
return [
|
|
'id' => $data->id,
|
|
'name' => $data->name,
|
|
'code' => $data->code,
|
|
'symbol' => $data->symbol,
|
|
'exchange_rate' => (double) $data->exchange_rate,
|
|
'is_default' => get_setting('system_default_currency')==$data->id?true:false
|
|
];
|
|
})
|
|
];
|
|
}
|
|
|
|
public function with($request)
|
|
{
|
|
return [
|
|
'success' => true,
|
|
'status' => 200
|
|
];
|
|
}
|
|
}
|