@extends('web.layouts.master') @section('content')
@if(Auth::user()->save_as_complete==0)
Education History
@csrf
@if(count($institution)>0) @foreach($institution as $row) @endforeach
Institution Subject Result During Action
{{$row->institution}} {{$row->subject}}
{{$row->academic_level_info->name}}
{{$row->result}}
PYear: {{$row->passing_year}}
{{date("d M, Y", strtotime($row->start_date)).'-'.date("d M, Y", strtotime($row->end_date))}}
@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) @foreach($work_experience as $row) @endforeach
Company Name Designation Currently working Start Date End Date Action
{{$row->company_name}} {{$row->designation}} {{$row->currently_working == 0 ? 'off' : 'on'}} {{date("d M, Y", strtotime($row->start_date))}} {{date("d M, Y", strtotime($row->end_date))}}
@else
No Work Experience available.
@endif
@csrf
Currently working in that company?
Test Score
Do you have any Test Score?
@csrf
@if(count($score)>0) @foreach($score as $row) @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
@php $button_status=false; if(Auth::user()->is_work_experience == 1 && count($work_experience)>0 && Auth::user()->is_test_score == 1 && count($score)>0){ $button_status=true; } if(Auth::user()->is_work_experience == 0 && Auth::user()->is_test_score == 1 && count($score)>0){ $button_status=true; } if(Auth::user()->is_work_experience == 1 && count($work_experience)>0 && Auth::user()->is_test_score == 0){ $button_status=true; } if(Auth::user()->is_work_experience == 0 && Auth::user()->is_test_score == 0){ $button_status=true; } @endphp @if($button_status) @endif
@else
@csrf
Serial No
Title
Proposal
Action
@foreach($proposal as $row)
{{$row->student_id}}
{{$row->title}}
{{$row->methology}} . {{$row->department}} . {{$row->status}}
pdf
@endforeach
@csrf
@endif
@endsection @push('js') @endpush