mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
27 lines
627 B
PHP
27 lines
627 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class DocumentResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'document_type' => $this->document_type,
|
|
'reference' => $this->reference,
|
|
'status' => (int) $this->status,
|
|
'approved_by' => (int) $this->approved_by,
|
|
'files' => $this->files()->get()
|
|
];
|
|
}
|
|
}
|