PHP 8.2.30
Preview: PortfolioMenuResource.php Size: 1.08 KB
/home/byroehnu/cnggold.com.ng/app/Http/Resources/Admin/PortfolioMenuResource.php

<?php

namespace App\Http\Resources\Admin;

use App\Models\Setting;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\ResourceCollection;

class PortfolioMenuResource extends ResourceCollection
{
    /**
     * Transform the resource into an array.
     *
     * @return array<string, mixed>
     */
    public function toArray(Request $request): array
    {
        $result = [];
        $languages = json_decode(Setting::pull('languages'), true);

        foreach ($languages as $lang) {
            $result[$lang['code']] = [];
        }

        foreach ($this->collection as $portfolio) {
            foreach ($portfolio->contents as $content) {
                $language = $content->language_code;
                if (! isset($result[$language])) {
                    $result[$language] = [];
                }
                $result[$language][] = [
                    'name' => $content->title,
                    'url' => route('portfolio.show', $portfolio->slug),
                    'type' => 'Portfolio',
                ];
            }
        }

        return $result;
    }
}

Directory Contents

Dirs: 0 × Files: 15

Name Size Perms Modified Actions
1.09 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
490 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
1.20 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
449 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
1.06 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
458 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
1.08 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
490 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
1.04 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
1.06 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
452 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
903 B lrw-r--r-- 2025-07-19 07:29:54
Edit Download
1.07 KB lrw-r--r-- 2025-04-19 04:22:17
Edit Download
486 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download
480 B lrw-r--r-- 2025-04-08 04:12:56
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).