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

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

{{ __('Income Report') }}

@foreach($incomes as $income) @endforeach
{{ __('Item') }} {{ __('Amount') }} {{ __('Category') }} {{ __('Date') }}
{{ $income->item }} {{ config('app.currency') . __(' ') . $income->amount }} {{ $income->category->name }} {{ date('Y-m-d', strtotime($income->created_at)) }}