{{ date('Y-m-d') }}

{{ $company->company }}
{{ $company->address }}
{{ $company->city }}
{{ $company->postcode }}
{{ $company->phone }}

{{ __('User Billing Report') }}

@foreach($billings as $bill) @endforeach
{{ __('Invoice') }} {{ __('User') }} {{ __('Package') }} {{ __('Amount') }} {{ __('Duration') }}
{{ $bill->invoice }} {{ $bill->user->name }} {{ $bill->package->name }} {{ config('app.currency') . __(' ') . ($bill->user_price + $bill->reseller_price) }} {{ date('Y-m-d', strtotime($bill->created_at)) }}
{{ date('Y-m-d', strtotime($bill->subscription_expires)) }}