@extends('layouts.app') @section('site_title', 'Indian Panorama Non-Feature Jury | IFFI Goa') @section('site_description', 'Meet the esteemed Indian Panorama Non-Feature Jury at IFFI Goa, showcasing excellence in short and documentary cinema from across India.') @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