@extends('layouts.app')
@section('site_title', 'Indian Panorama Jury - Feature Films | IFFI Goa 2024')
@section('site_description',
'Discover the esteemed jury panel selecting India’s finest feature films for Indian
Panorama at IFFI Goa 2024. Celebrating excellence in Indian cinema.')
@section('content')
@include('layouts.header')
@include('layouts.menu')
@php
$chairPerson = $juryDetails->where('is_chairperson', '1')->first();
@endphp
@if (!empty($chairPerson))
{{ $chairPerson->name }}
{{ $chairPerson->is_chairperson == '1' ? 'Chairperson' : '' }}
@if (!empty($chairPerson->img_src))
 }})
@else

@endif
@endif
@php
$juries = $juryDetails->where('is_chairperson', 0);
@endphp
@if (!empty($juries))
@foreach ($juries as $key => $jury)
{{ $jury->name }}
{{ $jury->description }}
@if (!empty($jury->img_src))
 }})
@else

@endif
@endforeach
@endif
@endsection