{{ __('Bill to') }} | {{ __('') }} |
---|---|
{{ $invoice->user->name }}
{{ $invoice->user->address }} {{ $invoice->user->city . ' ' . $invoice->user->postcode }} {{ $invoice->user->email }} {{ $invoice->user->phone }} |
{{ __('Invoice #') . $invoice->invoice }}
{{ __('Created by: ') . $invoice->createdBy->name }}
{{ __('Created on: ') . date('Y-m-d', strtotime($invoice->created_at)) }}
{{ __('Created due: ') . date('Y-m-d', strtotime($invoice->payment_last_day)) }}
@if($invoice->user->reseller_id)
{{ __('Reseller: ') . $invoice->user->reseller->name }}
@endif
|
{{ __('Package') }} | {{ __('Duration') }} | {{ __('Total') }} |
---|---|---|
{{ $invoice->package_name }} |
{{ date('Y-m-d', strtotime($invoice->created_at)) }} {{ date('Y-m-d', strtotime($invoice->subscription_expires)) }} |
{{ config('app.currency') . __(' ') . ($invoice->user_price + $invoice->reseller_price) }} |