@extends('layouts.blank') @section('title') {{ __('Manual Payment Report') }} @endsection @section('main_content')
{{ __('Bill To') }} | : {{ $manual_payment->business?->companyName ?? '' }} |
{{ __('Mobile') }} | : {{ $manual_payment->business?->phoneNumber ?? '' }} |
{{ __('Address') }} | : {{ $manual_payment->business?->address ?? '' }} |
{{ __('SL') }} | {{ __('Business Name') }} | {{ __('Plan') }} | {{ __('Started') }} | {{ __('End') }} | {{ __('Gateway Name') }} |
---|---|---|---|---|---|
1 | {{ $manual_payment->business->companyName ?? 'N/A' }} | {{ $manual_payment->plan->subscriptionName ?? 'N/A' }} | {{ formatted_date($manual_payment->created_at) }} | {{ $manual_payment->created_at ? formatted_date($manual_payment->created_at->addDays($manual_payment->duration)) : '' }} | {{ $manual_payment->gateway->name ?? 'N/A' }} |