@extends('website.user.layout.layout') @section('title', 'Invoice') @section('user-content')
{{ auth('web')->user()->email }}
{{ auth('web')->user()->phone }}
{{ __('Amount') }}: {{ currency($subscriptionHistory->total_amount) }}
{{ __('Payment') }}: {{ ucfirst($subscriptionHistory->payment_method) }}
{{ __('Transaction Id') }}: {{ $subscriptionHistory->transaction }}
| {{ __('Package') }} | {{ __('Purchase Date') }} | {{ __('Expired Date') }} | {{ __('Amount') }} | ||
|---|---|---|---|---|---|
| {{ $subscriptionHistory->plan_name }} | {{ now()->parse($subscriptionHistory->start_date)->format('d-m-Y') }} | {{ now()->parse($subscriptionHistory->end_date)->format('d-m-Y') }} | {{ currency($subscriptionHistory->total_amount) }} | ||
| {{ __('Total') }} | {{ currency($subscriptionHistory->total_amount) }} | ||||