24 lines
608 B
PHP
24 lines
608 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class CurrencyResource extends JsonResource
|
|
{
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'code' => $this->code,
|
|
'name' => $this->name,
|
|
'symbol' => $this->symbol,
|
|
'decimal_places' => $this->decimal_places,
|
|
'exchange_rate_to_base' => $this->exchange_rate_to_base,
|
|
'is_base' => $this->is_base,
|
|
'is_active' => $this->is_active,
|
|
];
|
|
}
|
|
}
|