Files
animethemes-server/app/Http/Resources/Auth/Collection/RoleCollection.php
T

32 lines
739 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Resources\Auth\Collection;
use App\Http\Resources\Auth\Resource\RoleJsonResource;
use App\Http\Resources\BaseCollection;
use App\Models\Auth\Role;
use Illuminate\Http\Request;
class RoleCollection extends BaseCollection
{
/**
* The "data" wrapper that should be applied.
*
* @var string|null
*/
public static $wrap = 'roles';
/**
* Transform the resource into a JSON array.
*
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function toArray(Request $request): array
{
return $this->collection->map(fn (Role $role): RoleJsonResource => new RoleJsonResource($role, $this->query))->all();
}
}