@extends('layouts.app') @section('title','Intern Development') @section('content')
{{ $intern->user->name }} — Internship Development
Mentor, learning plan, evaluations, completion and certificate.
Learning plan
@foreach($intern->learningItems as $x)
{{ $x->title }} {{ $x->status }} · {{ $x->progress_percent }}%
@endforeach
@if(!$intern->certificate)
@else
Certificate: {{ $intern->certificate->certificate_no }}
@endif
@endsection