@extends('layouts.app') @section('content')
{{ __('Income') }}

@foreach($incomes as $income) @endforeach
{{ __('Amount') }} {{ __('Type') }} {{ __('Date') }} {{ __('Invoice') }} {{ __('Note') }}
{{ auth()->user()->currency . $income->amount }} {{ $income->income_type }} {{ date('Y-m-d', strtotime($income->date)) }} {{ $income->invoice }} {{ $income->note }}
@endsection @section('scripts') @endsection