@extends('backend.student.layouts.right_side_bar')
@section('studentBody')
@if(session('success'))
Success {{session('success')}}
@endif
@if(session('error'))
Error {{session('error')}}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
Error {{$error}}
@endforeach
@endif
@if(session('success_profile'))
@php
$headName = session('success_profile');
@endphp
@else
@php
$headName = 'profile';
@endphp
@endif
-
Profile
-
Education
-
Trainings
-
Jobs
| SN |
Degree |
Institutions |
Year |
Action |
@foreach($student->degrees as $key=>$degree)
| {{++$key}} |
{{$degree->course->name}} |
{{isset($degree->client)?$degree->client->company_name:''}} |
{{$degree->pass_year}} |
|
@endforeach
| SN |
Training Name |
Institutions |
Duration |
Action |
@foreach($student->trainings as $key=>$training)
| {{++$key}} |
{{$training->name}} |
{{$training->institute}} |
{{$training->start_date}} to
{{$training->end_date}}
|
|
@endforeach
| SN |
Title |
Company |
Duration |
Action |
@foreach($student->jobs as $key=>$job)
| {{++$key}} |
{{$job->job_title}} |
{{$job->company}} |
{{$job->start_date}} to
@if(isset($job->end_date))
{{$job->end_date}}
@else
Till Date
@endif
|
|
@endforeach