@extends('admin.layouts.app') @section('content')

@isset($page_title) {{ $page_title }} @endisset

To
{{ $payment->user->name }}
Email : {{ $payment->user->email }}
Phone : {{ $payment->user->phone }}
State : {{ $payment->user->state }}
@if(!empty($payment->invoice_id)) Receipt # {{$payment->invoice_id}}
@endif Payment Date : {{ $payment->created_at->format('d-M-Y') }}
From : Future Tech {{ config('app.name') }} LLP
GSTIN : 09AAJFF0965A1ZM
Address : {{ websiteData('address') }}
Sr. No. Package Name Amount Discount Subtotal
1 {{ $payment->plan->title }} ₹ {{ $payment->amount }} ₹ {{ $payment->discounted_amount }} ₹ {{ $payment->total_amount }}

Term & Condition:

For any query, please contact customer support.

@if($payment->created_at >= '2023-10-26 00:00:00') @php $gst_amount = $payment->total_amount - ($payment->total_amount * 100) /118 @endphp @if($payment->user->state == 'Uttar Pradesh') @else @endif @endif
Amount : ₹ {{ round($payment->total_amount-$gst_amount,2) }}
CGST (9%): ₹ {{ round($gst_amount/2,2) }}
SGST (9%): ₹ {{ round($gst_amount/2,2) }}
IGST (18%): ₹ {{ round($gst_amount,2) }}
Total : ₹ {{ $payment->total_amount }}
@endsection