@extends('layouts.admin')
@section('title')
Profile Peserta
@endsection
@section('customStyle')
@endsection
@section('content')
{{--
Tambah Peserta --}}
Sertifikasi
| No |
Nama Sertifikasi |
Lembaga |
Tanggal |
Foto |
Keterangan |
@php
$no = 1;
@endphp
@foreach ($detail->sertifikasi as $item)
| {{ $no++ }} |
{{ $item->nama_sertif }} |
{{ $item->lembaga_sertif }} |
{{ \Carbon\Carbon::parse($item->tanggal_sertif)->format('d M Y') }} |
|
{{ $item->ket_sertif }} |
@endforeach
@endsection
@section('script')
@endsection