@if(Session::has('invoice_pay_message'))
×{{Session::get('invoice_pay_message')}}
@endif

Invoice

#{{$invoice->id}}

Paid


@if($type=="plans_payments")
@if(\Config::get('own-invoice-from name'))

{!! \Config::get('own-invoice-from name') !!}

@endif @if(\Config::get('own-invoice-address'))

{!! nl2br(\Config::get('own-invoice-address')) !!}

@endif

Invoice To

@if($invoice->community)

{{$invoice->community->title}}

{{$invoice->community->email}}

{!! nl2br($invoice->community->full_address) !!}
@endif
Invoice Date {{date("M j, Y",strtotime($invoice->created_at))}}
Payments ${{number_format($invoice->amount, 2, '.', ',')}}
Invoice Item(s) Qty Price Description Total
{{$invoice->item_name}} 1 ${{number_format($invoice->amount, 2, '.', ',')}} @if($invoice->add_payment_type=="community") {{ucfirst($invoice->payment_type)}} Subscription @elseif($invoice->add_payment_type=="community_user_plan_limit") Increase corporate users limit @endif ${{number_format($invoice->amount, 2, '.', ',')}}
Subtotal ${{number_format($invoice->amount, 2, '.', ',')}}
Total ${{number_format($invoice->amount, 2, '.', ',')}}
@if(\Config::get('own-invoice-terms'))

Invoice Terms

{!! nl2br(\Config::get('own-invoice-terms')) !!}

@endif @if(\Config::get('own-invoice-message-to-customer'))

Message to Customer

{!! nl2br(\Config::get('own-invoice-message-to-customer')) !!}

@endif

Payment Transaction id - {{$invoice->transaction_id}}

Payment Date - {{date("M j, Y",strtotime($invoice->created_at))}}

@endif
Back