@extends('layouts.master')
@section('content')
Manajemen Pembayaran
{{ $pembayaran->appends(['keyword' => request()->query('keyword')])->links() }}
{{--
@forelse($pembayaran as $row)
# --}}
No
Kode
Tgl.Pembayaran
Metode Pembayaran
Total
{{-- payload --}}
Status
{{-- # --}}
{{--
@empty
--}}
{{ $loop->iteration }}
{{ $row->kode_pembayaran }}
{{$row->created_at}}
{{-- {{ $row->created_at }} --}}
{{ $row->metode_pembayaran }}
Rp.{{ number_format($row->total) }}
{{--
@if (!empty($row->pembayaran_detail))
{{ $row->pembayaran_detail }}
@endif
--}}
@if ($row->status === "settlement" || $row->status === "Success")
Settlement
@endif
@if ($row->status === "expire")
Expire
@endif
@if ($row->status === "pending")
Pending
@endif
@if ($row->status === "cancel")
Cancel
@endif
@endforelse
Data Tidak Ada