Files
animethemes-server/app/Http/Api/Schema/Admin/FeatureSchema.php
T

49 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Http\Api\Schema\Admin;
use App\Http\Api\Field\Admin\Feature\FeatureNameField;
use App\Http\Api\Field\Admin\Feature\FeatureValueField;
use App\Http\Api\Field\Base\CreatedAtField;
use App\Http\Api\Field\Base\IdField;
use App\Http\Api\Field\Base\UpdatedAtField;
use App\Http\Api\Field\Field;
use App\Http\Api\Include\AllowedInclude;
use App\Http\Api\Schema\EloquentSchema;
use App\Http\Resources\Admin\Resource\FeatureJsonResource;
use App\Models\Admin\Feature;
class FeatureSchema extends EloquentSchema
{
public function type(): string
{
return FeatureJsonResource::$wrap;
}
/**
* @return AllowedInclude[]
*/
public function allowedIncludes(): array
{
return $this->withIntermediatePaths([]);
}
/**
* @return Field[]
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function fields(): array
{
return [
new IdField($this, Feature::ATTRIBUTE_ID),
new CreatedAtField($this),
new UpdatedAtField($this),
new FeatureNameField($this),
new FeatureValueField($this),
];
}
}