@extends('web.layouts.master') @section('content')
@csrf
@if(count($proposal)>0)
Ref
Title
Updated
Action
@foreach($proposal as $key=>$row)
{{$row->proposal_ref}}
{{$row->title}}
{{$row->methology}} . @php $department =model('Department')::where('id',$row->department)->first(); @endphp {{$department->name ?? ''}} . {{$row->status}}
{{date('d M Y', strtotime($row->created_at))}} {{$row->created_at->diffForHumans()}}
@if(student_proposal($row->student_id, $row->id)) @endif @if(student_proposal($row->student_id, $row->id)) @endif
@endforeach
@else
No Proposal available.
@endif
Have you ever attended any conferences to present your papers?
PUBLICATION
Sl Title Status Action
1 sub Published
EDUCATION HISTORY
@csrf
@if(count($institution)>0) @if(profile_permission($institution[0]->student_id)) @endif @foreach($institution as $row) @if(profile_permission($row->student_id)) @endif @endforeach
Institution Academic level Subject Result Passing YearAction
{{$row->institution}} {{$row->academic_level_info->name}} {{$row->subject}} {{$row->result}} {{$row->passing_year}}
@else
No Education History available.
@endif
@csrf
WORK EXPERIENCE
Do you have any Work Experience?
@csrf
Currently working in that company?
@if(count($work_experience)>0) @if(profile_permission($work_experience[0]->student_id)) @endif @foreach($work_experience as $row) @if(profile_permission($row->student_id)) @endif @endforeach
Company Name Designation Currently working Start Date End DateAction
{{$row->company_name}} {{$row->designation}} {{$row->currently_working == 0 ? 'off' : 'on'}} @if(!empty($row->start_date)){{date("d M, Y", strtotime($row->start_date))}} @else @endif @if(!empty($row->end_date)) {{date("d M, Y", strtotime($row->end_date))}} @else @endif
@else
No Work Experience available.
@endif
@csrf
Currently working in that company?
ENGLISH LANGUAGE PROFICIENCY
Do you have any English Test Certificate?
@csrf
@if(count($score)>0) @foreach($score as $row) @if(profile_permission($row->student_id)) @endif @endforeach
Testing System {{$row->test_name}} Test Date: {{date("d M, Y", strtotime($row->test_date))}}
{{$row->overall_score}}
Overall
{{$row->listening}}
Listening
{{$row->speaking}}
Speaking
{{$row->writing}}
Writing
{{$row->reading}}
Reading
@else
No Test Score available.
@endif
@csrf
@endsection @push('js') @endpush