23 lines
		
	
	
		
			467 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			467 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Toby\Infrastructure\Http\Resources;
 | 
						|
 | 
						|
use Illuminate\Http\Resources\Json\JsonResource;
 | 
						|
 | 
						|
class SimpleUserResource extends JsonResource
 | 
						|
{
 | 
						|
    public static $wrap = null;
 | 
						|
 | 
						|
    public function toArray($request): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            "id" => $this->id,
 | 
						|
            "name" => $this->profile->fullName,
 | 
						|
            "email" => $this->email,
 | 
						|
            "avatar" => $this->profile->getAvatar(),
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |