. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. namespace App\Transformers\Forum; use App\Models\Forum\ForumCover; use App\Transformers\TransformerAbstract; class ForumCoverTransformer extends TransformerAbstract { public function transform(?ForumCover $cover = null) { $fileUrl = $cover === null ? null : $cover->file()->url(); if ($fileUrl === null) { $data = [ 'method' => 'post', 'url' => route('forum.forum-covers.store', ['forum_id' => $cover->forum_id]), ]; } else { $data = [ 'method' => 'patch', 'url' => route('forum.forum-covers.update', [$cover, 'forum_id' => $cover->forum_id]), 'id' => $cover->id, 'fileUrl' => $fileUrl, ]; } $data['dimensions'] = $cover::MAX_DIMENSIONS; return $data; } }