@extends('layouts.vendor.app') @section('title', translate('Invoice')) @section('content') first()->value; $company_email =BusinessSetting::where('key', 'email_address')->first()->value; $company_name =BusinessSetting::where('key', 'business_name')->first()->value; $company_address =BusinessSetting::where('key', 'address')->first()->value; $logo =BusinessSetting::where('key', 'logo')->first()->value; $company_mobile_logo = $logo; $company_links = json_decode(BusinessSetting::where('key','landing_page_links')->first()->value, true); ?>
{{ translate('Transaction ID') }} | {{ translate('Package Name') }} | {{ translate('Transaction Time') }} | {{ translate('Validity Time') }} | {{ translate('Amount') }} |
---|---|---|---|---|
{{ $subscription_transaction->id }} | {{ $subscription_transaction->package->package_name }} | {{ $subscription_transaction->created_at->format('d M Y') }} | {{ $subscription_transaction->validity }} {{ translate('messages.Days') }} | {{ \App\CentralLogics\Helpers::format_currency($subscription_transaction->paid_amount)}} |