@php $achievementGalleries = getGalleriesByCategory(limit: null, order: 'asc', category: 'achievement'); $institutions = getInstitutions(limit: null, order: 'asc'); @endphp @extends('client.raffles.layouts.app') @section('content') @include('client.raffles.pages.partials.breadcumb') @isset($institutions)
@foreach ($institutions as $institution)
{{ $institution->title }}
@endforeach
@endisset @if ($achievementGalleries->galleries->isNotEmpty())
{{ setting('title') }}

{{ $page->short_description }}

@foreach ($achievementGalleries->galleries as $achievement)
@endforeach
@endif @endsection