mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 03:35:02 +02:00
34 lines
621 B
PHP
34 lines
621 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Tabs\Studio\Resource;
|
|
|
|
use App\Enums\Models\Wiki\ResourceSite;
|
|
use App\Filament\Tabs\Studio\StudioResourceTab;
|
|
|
|
/**
|
|
* Class StudioAnidbResourceTab.
|
|
*/
|
|
class StudioAnidbResourceTab extends StudioResourceTab
|
|
{
|
|
/**
|
|
* Get the key for the tab.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getKey(): string
|
|
{
|
|
return 'studio-anidb-resource-tab';
|
|
}
|
|
|
|
/**
|
|
* The resource site.
|
|
*
|
|
* @return ResourceSite
|
|
*/
|
|
protected static function site(): ResourceSite
|
|
{
|
|
return ResourceSite::ANIDB;
|
|
}
|
|
} |