@extends('layouts.admin') @section('content') @can('perserta_access')
Print Name
@endcan
{{ trans('cruds.user.title_singular') }} {{ trans('global.list') }}
@foreach($users as $key => $user) @endforeach
Grup Nama Paket J/K Asal Email Telepone Diskusi biaya registrasi  
grup:{{ $user->grup ?? '' }} {{ $user->name ?? '' }} @php $jenis = $user->pack; switch ($jenis) { case "1": $tipe = "Seminar saja"; break; case "2": $tipe = "twin Sharing room"; break; case "3": $tipe = "Single room"; break; case "4": $tipe = "paket fakultas"; break; default: $tipe = "-"; } @endphp {{ $tipe }} @if($user->sex == "M") Pria @else Wanita @endif {{ $user->role }} FK {{ $user->asal ?? '' }} {{ $user->email ?? '' }} {{ $user->phone ?? '' }} @php $type = $user->dis; switch ($type) { case "1": $def = "Topic 1. International Accreditation"; break; case "2": $def = "Topic 2. Teaching Hospital belonging to a Private Medical Faculty"; break; case "3": $def = "Topic 3. Hospital Based PPDS "; break; case "4": $def = "Topic 4. Programmatic Asessment & UKMPPD"; break; default: $def = "-"; } @endphp {{ $def }} @if($user->paid == "belum upload bukti" ) {{ $user->paid }} @else {{ $user->paid }} @endif @can('peserta_show') {{ trans('global.view') }} @endcan @can('peserta_edit') {{ trans('global.edit') }} @endcan @can('peserta_delete')
@endcan
@endsection @section('scripts') @parent @endsection