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