@extends('layouts.admin') @section('content') @can('price_create')
{{ trans('global.add') }} Pembayaran
@endcan
{{ trans('cruds.price.title_singular') }} {{ trans('global.list') }}
@foreach($prices as $key => $price) @php $type = $price->paytype; switch ($type) { case "1": $def = "Fullbord Non Residental Package "; break; case "2": $def = "Fullbord Twin Residental Package"; break; case "3": $def = "Fullbord Single Residental Package "; break; case "4": $def = "Premium Faculty Package "; break; default: $def = "-"; } @endphp @endforeach
{{ trans('cruds.price.fields.id') }} Dari Tujuan Pembayaran Besaran Bukti  
{{ $price->id ?? '' }} {{ $price->name ?? '' }}
{{ $price->phone ?? ''}}
{{ $type }}
{{ $price->tujuan ?? '' }}
@if($price->type == "reg") Registration for :
@foreach($price->participans as $data) {{ $data->name }}
@endforeach @else Other @endif
{{ $price->harga ?? '' }} @if($price->photo) @endif @if($price->validate == null) verifikasi pembayaran @else pembayaran diverifikasi oleh {{ $price->validator }} @endif
@endsection @section('scripts') @parent @endsection