@extends("layouts.app_new") @section("title") Experts @endsection @section("content")
Institutions
Area of Interest

@if(url()->full() != url("experts")) @forelse($experts as $expert)
@if($expert->photo) image @if(Auth::user()->expert == 1) @endif @else image @if(Auth::user()->expert == 1) @endif @endif

@if(Auth::user()->expert == 1) {{trim($expert->first_name." ".$expert->last_name)}} @else {{trim($expert->first_name." ".$expert->last_name)}} @endif

@php $string = ""; @endphp @foreach($expert->institutions as $institution) @php $string .= $institution->sub_institution_name." ".$institution->name.", "; @endphp @endforeach {{substr($string, 0, -1)}}

@empty

No Results Found...

@endforelse @else
@endif
@endsection @section("script") @endsection