@extends('layouts.master') @section('title', 'Researcher Project List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
Project of {{ $researcher->researcher_title.' '.$researcher->researcher_fullname }}

@foreach($project as $key => $new_project) @endforeach
No. Project Code Project Name Agancy Budget Owner Duration From Duration To Extented Date Currency
{{ $key + 1 }} {{ $new_project->project_code ?? '-' }} {{ $new_project->project_name_en ?? '-' }} {{ $new_project->project_agency ?? '-' }} @if(!empty($new_project->project_total_currency)) {{ number_format($new_project->project_total_currency, 2) }} {{ $new_project->currency_name }} @else - @endif @if($new_project->project_researcher_position == 'PI') PI @elseif($new_project->project_researcher_position == 'Co-PI') Co-PI @elseif($new_project->project_researcher_position == 'Co-Researcher') Co-Researcher @else {{ $new_project->project_researcher_position }} @endif @if(!empty($new_project->project_from)) {{ date('d M Y', strtotime($new_project->project_from)) }} @else - @endif @if(!empty($new_project->project_to)) {{ date('d M Y', strtotime($new_project->project_to)) }} @else - @endif @if(!empty($new_project->project_extended_latest)) {{ date('d M Y', strtotime($new_project->project_extended_latest)) }} @else - @endif {{ $new_project->currency_name ?? '-' }} View
@include('layouts.footer') @endsection