@extends('layouts.dashboard') @section('title', __('messages.payment_details')) @section('header', __('messages.payment_details')) @section('sidebar') @include('tenant.partials.sidebar') @endsection @section('content')

Payment Details

Complete information about this payment transaction

Back to Payments

{{ __('messages.payment_information') }}

Complete payment transaction details including payment number, transaction date, amount, payment method, reference number, current status, and related lease agreement information.

{{ __('messages.payment_number') }}
{{ $payment->payment_number }}
{{ __('messages.payment_date') }}
{{ \Carbon\Carbon::parse($payment->payment_date)->format('M d, Y') }}
{{ __('messages.amount') }}
{{ number_format($payment->amount, 0) }} {{ $payment->currency }}
{{ __('messages.status') }}
{{ ucfirst($payment->status) }}
{{ __('messages.type') }}
{{ ucfirst($payment->type) }}
@if($payment->payment_method)
{{ __('messages.payment_method') }}
{{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
@endif @if($payment->reference_number)
{{ __('messages.reference_number') }}
{{ $payment->reference_number }}
@endif @if($payment->lease) @endif @if($payment->notes)
{{ __('messages.notes') }}
{{ $payment->notes }}
@endif
@endsection