@extends('website.user.layout.layout') @section('title', 'Invoice') @section('user-content')

{{ __('Invoice') }}

{{ auth('web')->user()->name }}

{{ auth('web')->user()->email }}

{{ auth('web')->user()->phone }}

{{ __('Invoice') }}: {{ $subscriptionHistory->invoice_id }}

{{ __('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) }}
{{ __('Print') }}
@endsection @push('css') @endpush