@extends('layouts.instructor') @push('title', get_phrase('Resume Manager')) @section('content') @php $auth = auth()->user(); $educations = json_decode($auth->educations, true); @endphp

{{ get_phrase('Manage resume') }}

{{ get_phrase('Add New Education') }}
@if (isset($educations) && count($educations) > 0)

{{ get_phrase('Showing') . ' ' . count($educations) . ' ' . get_phrase('data') }}

@foreach ($educations as $key => $education) @php $index = $key @endphp @endforeach
@else @include('instructor.no_data') @endif
@endsection