mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-27 09:14:43 +02:00
* feat(api): adding roles and permissions relations to my schema * style: fix StyleCI findings
33 lines
588 B
PHP
33 lines
588 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Resources\Auth\Resource;
|
|
|
|
use App\Http\Api\Schema\Auth\PermissionSchema;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Http\Resources\BaseResource;
|
|
|
|
/**
|
|
* Class PermissionResource.
|
|
*/
|
|
class PermissionResource extends BaseResource
|
|
{
|
|
/**
|
|
* The "data" wrapper that should be applied.
|
|
*
|
|
* @var string|null
|
|
*/
|
|
public static $wrap = 'permission';
|
|
|
|
/**
|
|
* Get the resource schema.
|
|
*
|
|
* @return Schema
|
|
*/
|
|
protected function schema(): Schema
|
|
{
|
|
return new PermissionSchema();
|
|
}
|
|
}
|