@extends('layouts.main') @section('content')

{{ config('app.name', 'Laravel') }} {{ __('Date') }}: {{ Carbon\Carbon::now()->isoFormat('LL') }}

{{ __('Quantity') }} {{ __('Product') }} {{ __('Description') }} {{ __('Subtotal') }}
1 {{ $product->quantity }} {{ strtolower($product->type) == 'credits' ? CREDITS_DISPLAY_NAME : $product->type }} {{ $product->description }} {{ $product->formatToCurrency($product->price) }}

{{ __('Payment Methods') }}:

@if (config('SETTINGS::PAYMENTS:PAYPAL:SECRET') || config('SETTINGS::PAYMENTS:PAYPAL:SANDBOX_SECRET')) @endif @if (config('SETTINGS::PAYMENTS:STRIPE:TEST_SECRET') || config('SETTINGS::PAYMENTS:STRIPE:SECRET')) @endif

{{ __('Amount Due') }} {{ Carbon\Carbon::now()->isoFormat('LL') }}

{{ __('Subtotal') }}: {{ $product->formatToCurrency($product->price) }}
{{ __('Tax') }} ({{ $taxpercent }}%) {{ $product->formatToCurrency($taxvalue) }}
{{ __('Quantity') }}: 1
{{ __('Total') }}: {{ $product->formatToCurrency($total) }}
@endsection