27 lines
624 B
PHP
27 lines
624 B
PHP
<?php
|
|
|
|
namespace App\Payment;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class SubscriptionResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'fee_id' => $this->fee_id,
|
|
'fee_name' => $this->fee->name,
|
|
'amount_human' => number_format($this->amount / 100, 2, ',', '.').' €',
|
|
'amount' => $this->amount,
|
|
];
|
|
}
|
|
}
|