@extends('template.template')
@section('custom_style')
@endsection
@section('content')
@include('../navbar')
@if(session('error'))
@endif
@if ($errors->any())
@endif
Ini adalah 10 transaksi terakhir dari semua pengguna. Informasi yang tersedia mencakup tanggal transaksi, kode invoice, layanan, price, dan status.
Date
|
Invoice
|
Layanan
|
Price
|
Status
|
---|---|---|---|---|
{{ $pembelian->created_at }}
|
{{ substr($pembelian->order_id, 0, 2) . '*******' . substr($pembelian->order_id, -3) }}
|
{{ $pembelian->layanan }}
|
Rp {{ number_format($pembelian->harga, 0, ',', '.') }}
|
@if ($status == 'Progress' || $status == 'Process')
{{ $status }}
@elseif ($status == 'Batal' || $status == 'Cancelled' )
{{ $status }}
@else
{{ $status }}
@endif
|
Data tidak ditemukan!Tidak ada aktifitasi data. |