@extends('layouts.instructor') @push('title', get_phrase('Resume Manager')) @section('content') @php $auth = auth()->user(); $educations = json_decode($auth->educations, true); @endphp
{{ get_phrase('Showing') . ' ' . count($educations) . ' ' . get_phrase('data') }}
# | {{ get_phrase('Title') }} | {{ get_phrase('City & Country') }} | {{ get_phrase('Start Date') }} | {{ get_phrase('End Date') }} | {{ get_phrase('Status') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|---|
{{ ++$key }} |
{{ ucfirst($education['title']) }}{{ get_phrase('Institute') }}: {{ get_phrase($education['institute']) }} |
{{ $education['city']. ', ' .$education['country'] }} |
{{ $education['start_date'] }} |
{{ $education['end_date'] ?? 'N/A' }} |
@if ($education['status'] == 'completed')
{{ get_phrase('Completed') }} @else{{ get_phrase('Ongoing') }} @endif |