Files
laravel-backend/app/Http/Resources/UserLoggedResource.php
Joris Slagter df155bb13d
Some checks failed
continuous-integration/drone/push Build is failing
Initial Laravel API import
- Complete GGZ Ecademy Laravel backend application
- RESTful API for learning products, members, filters
- Authentication and authorization system
- Database migrations and seeders
- Custom CRUD generator commands
- Email notification system
- Integration with frontend applications
2025-12-02 17:40:21 +01:00

38 lines
1.2 KiB
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class UserLoggedResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'first_name' => $this->first_name,
'last_name' => $this->last_name,
'fullName' => $this->fullName,
'email' => $this->email,
'created_at' => $this->updated_at->toDateTimeString(),
'updated_at' => $this->created_at->toDateTimeString(),
'last_login_at' => $this->last_login_at,
'logged_at' => $this->logged_at,
'roles' => $this->roles,
'isMemberEditor' => $this->isMemberEditor,
'image' => [
'full' => $this->getFirstMediaUrl('profile_pics'),
'thumb' => $this->getFirstMediaUrl('profile_pics', 'thumb')
],
'notifications' => $this->when($this->notifications, $this->notifications),
'membersManagedCount' => $this->when($this->members, $this->members->count()),
];
}
}