@extends('site::layouts.master') @section('title', $institute->title ?? 'Institutes Title') @push('styles') @endpush @section('content') @if ($institute->feature_image && file_exists(public_path('uploads/institutes/' . $institute->feature_image))) @else @endif {!! $institute->content ?? 'Institutes Contents' !!} {{-- --}} More Institutes @forelse ($relatedInstitutes as $relatedInstitute) @if ($relatedInstitute->feature_image && file_exists(public_path('uploads/institutes/' . $relatedInstitute->feature_image))) @else @endif {{ $relatedInstitute->title ?? 'Institutes Title' }} @empty No Institutes Found ! @endforelse @endsection