@extends('core::public.psim') @section('title', $page->meta_title) @section('ogTitle', $page->meta_title) @section('description', $page->meta_description) @section('keywords', $page->meta_keywords) @section('ogImage', $page->present()->ogImage()) @section('content')

PSIM FELLOWSHIP

Home < Fellowship
{!! $page->present()->body !!}

Fellowship Awardee

@if($years = TypiCMS\Modules\Fellowships\Models\Fellowship::published()->orderBy('fellowship_year','DESC')->distinct('fellowship_year')->pluck('fellowship_year')->toArray() and count($years) > 0) @foreach($years as $year)
@if($items = TypiCMS\Modules\Fellowships\Models\Fellowship::where('fellowship_year',$year)->get() and $items->count() > 0) @foreach($items as $item) @endforeach
Picture/Full Name Designation Institute Fellowship Type
{{$item->user->title}} {{$item->user->first_name}} {{$item->user->last_name}}{{$item->user->title}} {{$item->user->first_name}} {{$item->user->last_name}} {{$item->user->designation}} {{$item->user->institute}} {{$item->fellowshiproles->name}}
@endif
@endforeach @endif
@endsection