Files
2024-09-30 14:08:38 +08:00

29 lines
736 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class UserSimpleResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'status' => $this->status,
'username' => $this->username,
'type' => $this->type,
'start_at' => $this->start_at,
'end_at' => $this->end_at,
'created_at' => $this->created_at?->format('Y-m-d H:i:s'),
'login_time' => $this->login_time?->format('Y-m-d H:i:s'),
];
}
}