Files
animethemes-server/app/Http/Resources/Admin/Collection/FeaturedThemeCollection.php
T

34 lines
852 B
PHP

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