mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
18 lines
375 B
PHP
18 lines
375 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class UserInvitation extends JsonResource
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'email' => $this->email,
|
|
'created_at' =>Carbon::parse($this->created_at)->format('d/m/Y')
|
|
];
|
|
}
|
|
|
|
} |