@extends('admin.sub_contents.base') @section('main')
@if(count($work_experience)>0) {{-- @if(profile_permission($work_experience[0]->student_id)) --}} {{-- @endif --}} @foreach($work_experience as $row) id; ?> @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
@endsection