@extends('emails.partials.base_template') @section('title', 'New Payment Received') @section('subtitle', 'A new payment has been processed') @section('content')
Hello Admin Team,
A new payment has been successfully received and processed for {{ $companySettings['companyName'] }}. Please review the details below.
Payment Received! A customer payment has been successfully processed and requires your attention.
Payment Amount
${{ number_format($amount, 2) }}
New payment processed

Payment Information

Payment ID: #{{ $payment->id }}
Amount: ${{ number_format($amount, 2) }}
Status: {{ ucfirst($payment->status) }}
Payment Date: {{ $payment->created_at->format('F j, Y g:i A') }}
Payment Provider: {{ ucfirst($payment->provider) }}

Customer Information

Name: {{ $user->name ?? 'N/A' }}
Email: {{ $user->email }}
Phone: @if($user->phone) {{ $user->phone }} @else N/A @endif
User ID: #{{ $user->id }}
@if($payment->booking_id)

Related Booking

Booking ID: #{{ $payment->booking_id }}
@endif
Action Required: Please review this payment in the admin panel and ensure all related services are properly updated.
Next Steps:
1. Verify the payment in your payment processor dashboard
2. Update any related booking status if applicable
3. Send payment confirmation to the customer
4. Process any pending services
Admin Panel: View Payment Details
@endsection