@extends('layouts.app') @section('content') @include('layouts.header') @include('layouts.menu') @php $subCategory = [ 1 => '125 Years of V. Shantaram', 2 => 'Centenary Tributes', 4 => '50 Years of NFDC', 5 => 'Special Showcase', 6 => 'Azadi ki Amrit Kahaniyan', 7 => 'Retrospective of Rajnikanth', ]; $displayOrder = [1, 2, 4, 5, 6, 7]; @endphp
@foreach ($displayOrder as $subCatId) @if (isset($specialPresentations[$subCatId]))

{{ $subCategory[$subCatId] ?? '' }}

@foreach ($specialPresentations[$subCatId] as $presentation)
{{-- min-size-img --}}
@if (!empty($presentation->img_src)) image @else {{ $presentation->title }} image @endif

{{ $presentation->title }}

Directed by: {{ $presentation->directed_by }}
Language: {!! $presentation->language !!}
{!! $presentation->restored_by_nfai ?? '' !!}

{!! $presentation->num_of_years ?? '' !!}

@endforeach
@endif @endforeach
@endsection