mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-28 01:34:43 +02:00
39 lines
904 B
PHP
39 lines
904 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Resources\Admin\Collection;
|
|
|
|
use App\Http\Resources\Admin\Resource\AnnouncementResource;
|
|
use App\Http\Resources\BaseCollection;
|
|
use App\Models\Admin\Announcement;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* Class AnnouncementCollection.
|
|
*/
|
|
class AnnouncementCollection extends BaseCollection
|
|
{
|
|
/**
|
|
* The "data" wrapper that should be applied.
|
|
*
|
|
* @var string|null
|
|
*/
|
|
public static $wrap = 'announcements';
|
|
|
|
/**
|
|
* Transform the resource collection into an array.
|
|
*
|
|
* @param Request $request
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return $this->collection->map(
|
|
fn (Announcement $announcement) => new AnnouncementResource($announcement, $this->query)
|
|
)->all();
|
|
}
|
|
}
|