@extends('layouts.main') @section('page-style') @endsection @section('page-plugin') @endsection @section('page-script') @endsection @section('content')

Back @include('layouts.notifications')

Transaction Info


Receipt Number
: {{$detail['transaction_receipt_number']}}
Time & date
: {{$detail['transaction_date']}}
Payment Status
: {{$detail['transaction_payment_status']}}
Customer Name
: {{$detail['customer_name']}}
Customer Phone
: {{$detail['customer_phone']}}
Customer Email
: {{(empty($detail['customer_email']) ? '-' : $detail['customer_email'])}}
@foreach($detail['songs'] as $product)
@if($product['type'] == 'song') {{$product['song_title']}}
@else Bundle : {{$product['song_title']}}
@endif Platform : {{$product['platform']}}
Category License : {{$product['category_licence']}} @if($product['type'] == 'bundle')
Songs :
    @foreach($product['songs'] as $s)
  • {{$s['song_title']}}
  • @endforeach
@endif
{{$product['price']}}
@endforeach
PAYMENT
@foreach($detail['detail_payment'] as $pd)
{{$pd['text']}}
{{$pd['value']}}
@endforeach
GRAND TOTAL
{{$detail['grandtotal']}}
PAYMENT USE
@if(!empty($detail['payment'])) {{$detail['payment']}} @else - @endif
@endsection