trypost/app/Http/Resources/App/PlatformConfigResource.php
Paulo Castellano 35646bbaf6 chore: working
2026-04-23 13:23:24 -03:00

31 lines
954 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Resources\App;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* Wraps a SocialAccount to expose per-platform publishing configuration.
*/
class PlatformConfigResource extends JsonResource
{
/**
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'platform' => $this->platform->value,
'maxContentLength' => $this->platform->maxContentLength(),
'maxImages' => $this->platform->maxImages(),
'allowedMediaTypes' => array_map(fn ($type) => $type->value, $this->platform->allowedMediaTypes()),
'supportsTextOnly' => $this->platform->supportsTextOnly(),
'requiresContent' => $this->platform->requiresContent(),
'publishConfig' => $this->platform->publishConfig(),
];
}
}