Files
animethemes-server/app/Http/Resources/Admin/Resource/FeatureJsonResource.php
T

28 lines
524 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Resources\Admin\Resource;
use App\Http\Api\Schema\Admin\FeatureSchema;
use App\Http\Api\Schema\Schema;
use App\Http\Resources\BaseJsonResource;
class FeatureJsonResource extends BaseJsonResource
{
/**
* The "data" wrapper that should be applied.
*
* @var string|null
*/
public static $wrap = 'feature';
/**
* Get the resource schema.
*/
protected function schema(): Schema
{
return new FeatureSchema();
}
}