{{ __('Experience') }}

@forelse ($experiences as $experience) @empty @endforelse
{{ __('No') }} {{ __('Company') }} {{ __('Position') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

{{ $loop->iteration }}

{{ $experience->company }}

{{ $experience->position }}

{{ $experience->start_date }}

{{ $experience->current == 1 ||$experience->end_date == null ? 'Present' : $experience->end_date }}

{{ __('No Data!') }}


{{ __('Education') }}

@forelse ($educations as $education) @empty @endforelse
{{ __('No') }} {{ __('Organization') }} {{ __('Degree') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

{{ $loop->iteration }}

{{ $education->organization }}

{{ $education->degree }}

{{ $education->start_date }}

{{ $education->current || $education->end_date == null ? 'Present' : $education->end_date }}

{{ __('No Data!') }}