33 lines
991 B
PHP
33 lines
991 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\Common;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class Company 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,
|
|
'name' => $this->name,
|
|
'email' => $this->email,
|
|
'currency' => $this->currency,
|
|
'domain' => $this->domain,
|
|
'address' => $this->address,
|
|
'logo' => $this->logo,
|
|
'enabled' => $this->enabled,
|
|
'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() : '',
|
|
];
|
|
}
|
|
}
|