@extends('layouts.content') @section('body_content')
Edit
@csrf @method('put')
Diajukan Oleh : {{ $qualification['user']['name'] }}

Role

: {{ $qualification['role']['name'] }}

Status Employee

: {{ $qualification['employee_statuses_uid'] }}

Education

@php $educationList = ''; @endphp @foreach ($education as $item) @php $educationList .= $item['education'] . ', '; @endphp @endforeach

: {{ rtrim($educationList, ', ') }}

Major Education

@php $majorEducationList = ''; @endphp @foreach ($major as $item) @php $majorEducationList .= $item['major'] . ', '; @endphp @endforeach

: {{ rtrim($majorEducationList, ', ') }}

Gender

@php $genderList = ''; @endphp @foreach ($gender as $item) @php $genderList .= $item['gender'] . ', '; @endphp @endforeach

: {{ rtrim($genderList, ', ') }}

Marital

@php $maritalList = ''; @endphp @foreach ($marital as $item) @php $maritalList .= $item['marital_status'] . ', '; @endphp @endforeach

: {{ rtrim($maritalList, ', ') }}

Skill

@php $skillList = ''; @endphp @foreach ($skills as $item) @php $skillList .= $item['skills'] . ', '; @endphp @endforeach

: {{ rtrim($skillList, ', ') }}

Experience

@php $experienceList = ''; @endphp @foreach ($experience as $item) @php $experienceList .= $item['experience'] . ', '; @endphp @endforeach

: {{ rtrim($experienceList, ', ') }}

Amount Request

: {{ $qualification['amount'] }}

Date Request

: {{ $qualification['date_request'] }}

Date Join

: {{ $qualification['date_joint'] }}

Penambahan / Pengurangan

: {{ $qualification['is_penambahan'] }}

Keterangan

: {{ $qualification['deskripsi'] }}

Age

: {{ $qualification['age'] }}

@if ($qualification['image']) {{ $qualification['image'] }} @else @endif
Back
@endsection