mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-20 17:37:23 +08:00
user-list
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class UserResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'email' => $this->email,
|
||||
'username' => $this->username,
|
||||
'status' => $this->status,
|
||||
'added' => $this->added,
|
||||
'class' => $this->class,
|
||||
'avatar' => $this->avatar,
|
||||
'uploaded' => $this->uploaded,
|
||||
'downloaded' => $this->downloaded,
|
||||
'seedtime' => $this->seedtime,
|
||||
'leechtime' => $this->leechtime,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user