@extends('frontend.layouts.user.master')
@section('title', 'Invoice Pay')
@section('content')
@php
$invoiceNumber = $invoice->invoice_no;
@endphp
@if ($method == 'bank_transfer')
@include('frontend.user.payment.bank-transfer')
@elseif ($method == 'stripe')
@include('frontend.user.payment.stripe')
@elseif ($method == 'apple_pay')
@include('frontend.user.payment.apple-pay')
@else
Invalid payment method selected.
@endif
@endsection