@extends('layouts.app') @section('site_title', 'Explore IFFI Goa 2024 International Festival Venues') @section('site_description', 'Discover the vibrant festival venues of IFFI Goa 2024. Get detailed information on locations, facilities, and events happening at each venue.') @section('site_keywords', 'IFFI Goa information, IFFI event venue, About IFFI venue, Festival location details, IFFI history and venue, Film festival India, Film festival venue, IFFI international film festival') @section('content') @include('layouts.header') @include('layouts.menu')
@foreach ($festivalTypes as $typeId => $typeName) @if ($groupedVenues->has($typeId))

{{ $typeName }}

@if ($typeId == 1)
@foreach ($groupedVenues[$typeId] as $venue)
@if (!empty($venue->img_src)) {{ $venue->img_src }} @elseif(!empty($venue->img_url)) @else Default User @endif

{{ $venue->festival_venue_name }}

@endforeach
@else
@foreach ($groupedVenues[$typeId] as $venue)
@if (!empty($venue->img_src)) {{ $venue->img_src }} @elseif(!empty($venue->img_url)) @else Default User @endif

{{ $venue->festival_venue_name }}

@endforeach
@endif @endif @endforeach
@endsection