@extends('admin.layouts.main-layout') @php $title = 'View Payments regarding ' . $customer->first_name . ' ' . $customer->last_name; @endphp @section('title', $title) @section('content')
@if (session('success')) @endif
{{ $title }}
@foreach ($customer_plans as $customer_plan) @endforeach
S. No. Plan Plan Price (In INR) Expiration Date Storage Limit (In GBs) Transaction Status Payment Order ID Payment ID Invoice Number Invoices
1. {{ $customer_plan->plan->plan_name }} {{ $customer_plan->plan->plan_price . '/' . ucwords($customer_plan->plan->plan_price_base) }} {{ date('F d, Y', strtotime($customer_plan->expiry_date)) }} {{ $customer_plan->plan->plan_storage_limit }} {{ $customer_plan->transaction->transaction_status == 'success' ? 'Successful' : 'Failed' }} {{ $customer_plan->transaction->gateway_order_id }} {{ $customer_plan->transaction->gateway_payment_id }} {{ $customer_plan->invoice->invoice_number }} View Invoice
@endsection @section('admin-custom-js') @endsection