@extends('frontend.app') @section('content') My Account My Wallet @include('frontend.user.partials.left-sidebar') Amount to Pay {{$invoice->currency ?: 'INR' }} {{number_format(($invoice->amount_pending),2)}} Payment Method @if($paymentChannels) @foreach($paymentChannels as $paymentChannel) {{$paymentChannel->name}} @endforeach @if($wallet && $invoice->invoice_type !== 'wallet') Use Wallet Amount ({{$wallet->amount}}) @endif @endif @if(isset($message)) {{$message}} @endif @endsection @section('styles') @endsection @section('scripts') @parent @endsection