@extends('layouts.app') @section('title') My Payments | Sanlive Pharmarcy @endsection @section('head') @endsection @section('content') @section('styles') @endsection
@include('includes.accountSidebar')
{{_('<< back ')}}
@if(count($payments) > 0) @endif @forelse ($payments as $pay) @empty

No Data Found

@endforelse
Order No Payment Ref External Ref Amount Status
{{$pay->order_id}} {{$pay->payment_ref}} {{$pay->external_ref}} {{moneyFormat($pay->payable)}} @if($pay->status == 1) Success @else Pending @endif
@endsection