25 lines
660 B
PHP
25 lines
660 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
use App\Models\AdminRole;
|
|
|
|
final class AdminRoleApiPresenter
|
|
{
|
|
/** @return array<string, mixed> */
|
|
public static function item(AdminRole $role): array
|
|
{
|
|
return [
|
|
'id' => (int) $role->id,
|
|
'slug' => $role->slug,
|
|
'name' => $role->name,
|
|
'description' => $role->description,
|
|
'status' => (int) $role->status,
|
|
'is_system' => (bool) $role->is_system,
|
|
'sort_order' => (int) $role->sort_order,
|
|
'permission_slugs' => $role->legacyPermissionSlugs(),
|
|
'user_count' => $role->assignedUserCount(),
|
|
];
|
|
}
|
|
}
|