@extends('layouts.admin') @section('content') @section('styles') @endsection
Manual Payments
@if(count($payments) > 0) @foreach ($payments as $sp) @endforeach @else @endif
User Name User Email Products Payment Ref External Ref Payment Currency Amount Payment Status Date Paid Order Status Payment Link Created At      
{{$sp->name}} {{$sp->email}} @php $prod = json_decode($sp->products_name,true); $x = 1; foreach($prod as $items) { echo ''.$x.': '.$items .'
'; $x++; } @endphp
{{$sp->payment_ref??'-'}} {{$sp->external_ref??'-'}} {{$sp->currency??'-'}} {{number_format($sp->amount)??'-'}} {{$sp->payment_status}} {{$sp->order_paid??'-'}} {{$sp->order_status??'-'}}
{{$sp->created_at->format('d/M/y')}}
No data available
@endsection @section('script') @endsection