@extends('layouts.frontend.index') @section('title', $label) @section('meta_title', $label , ' - ' . Config::get('app.name')) @section('meta_description', Config::get('param.meta.description')) @section('meta_keywords', Config::get('param.meta.keywords')) @section('content')
@foreach ($transaction as $t)
{{ $t->number }}
Tgl. Transaksi
{{ Common::dateFormat($t->created_at, 'dd mmmm yyyy, hh:ii WIB') }}
Paket
{{ $t->package->name . ' - ' . ucfirst($t->package_time_name) }}
Metode Pembayaran
{{ $t->paymentMethod->name }}
Harga Rp {{ number_format($t->subtotal, 0, '', '.') }}
Biaya Transaksi Rp {{ number_format($t->fee, 0, '', '.') }}
Total Rp {{ number_format($t->total, 0, '', '.') }}

{!! $t->status_badge !!} @if ($t->status == 0) @elseif ($t->status == 1)
Tgl. Pembayaran
{{ Common::dateFormat($t->payment_date, 'dd mmmm yyyy, hh:ii WIB') }}
@endif
@endforeach {{ $transaction->links() }}
@endsection @push('styles') @endpush @push('scripts') @endpush