@extends('layouts.main') @section('title', 'Gallery NalarKita') @section('pageContent')

{{ __('gallery') }}

{{ __('gallery_caption') }}

@foreach ($galleries as $gallery) @php $images = is_array(json_decode($gallery->image)) ? json_decode($gallery->image) : [$gallery->image]; @endphp
{{ $gallery->gallery_name }}
@endforeach
@php $imageMap = []; foreach ($galleries as $gallery) { $imgs = is_array(json_decode($gallery->image)) ? json_decode($gallery->image) : [$gallery->image]; $imageMap[$gallery->id] = $imgs; } @endphp @endsection @section('scripts') @endsection