34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources\Document;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class DocumentTotal extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'company_id' => $this->company_id,
|
|
'type' => $this->type,
|
|
'document_id' => $this->document_id,
|
|
'code' => $this->code,
|
|
'name' => $this->name,
|
|
'amount' => $this->amount,
|
|
'amount_formatted' => money($this->amount, $this->document->currency_code, true)->format(),
|
|
'sort_order' => $this->sort_order,
|
|
'created_from' => $this->created_from,
|
|
'created_by' => $this->created_by,
|
|
'created_at' => $this->created_at ? $this->created_at->toIso8601String() : '',
|
|
'updated_at' => $this->updated_at ? $this->updated_at->toIso8601String() : '',
|
|
];
|
|
}
|
|
}
|