2025-09-24 13:34:19 +02:00

30 lines
891 B
PHP

<?php
namespace App\Http\Controllers\Api\Application\Users;
use App\Http\Controllers\Api\Application\ApplicationApiController;
use App\Http\Requests\Api\Application\Users\GetExternalUserRequest;
use App\Models\User;
use App\Transformers\Api\Application\UserTransformer;
use Dedoc\Scramble\Attributes\Group;
#[Group('User', weight: 1)]
class ExternalUserController extends ApplicationApiController
{
/**
* View user (external id)
*
* Retrieve a specific user from the database using their external ID.
*
* @return array<mixed>
*/
public function index(GetExternalUserRequest $request, string $externalId): array
{
$user = User::query()->where('external_id', $externalId)->firstOrFail();
return $this->fractal->item($user)
->transformWith($this->getTransformer(UserTransformer::class))
->toArray();
}
}