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

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

{{__('To')}}
{{config('app.name' , 'Laravel')}}
{{__('Email')}}: {{env('PAYPAL_EMAIL' , env('MAIL_FROM_NAME'))}}
{{__('From')}}
{{Auth::user()->name}}
{{__('Email')}}: {{Auth::user()->email}}
{{__('Status')}}
{{__('Pending')}}
{{-- Order ID: 4F3S8J
--}}
{{__('Quantity')}} {{__('Product')}} {{__('Description')}} {{__('Subtotal')}}
1 {{$product->quantity}} {{strtolower($product->type) == 'credits' ? CREDITS_DISPLAY_NAME : $product->type}} {{$product->description}} {{$product->formatToCurrency($product->price)}}

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

Paypal

{{__('By purchasing this product you agree and accept our terms of service')}}

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

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