{{-- quarterly --}}
@if (isset($_GET['category']) && $_GET['period'] == 'quarterly')
{{ __('Type') }} |
@foreach ($monthList as $month)
{{ $month }} |
@endforeach
{{ __('Income : ') }} |
{{ __('Revenue') }} |
@foreach ($revenueIncomeTotal as $revenue)
@foreach ($revenue as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Invoice') }} |
@foreach ($invoiceIncomeTotal as $invoice)
@foreach ($invoice as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Expense : ') }} |
{{ __('Payment') }} |
@foreach ($paymentExpenseTotal as $payment)
@foreach ($payment as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Bill') }} |
@foreach ($billExpenseTotal as $bill)
@foreach ($bill as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Profit = Income - Expense ') }} |
{{ __('Profit') }}
|
@foreach ($profit as $prft)
@foreach ($prft as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{-- half yearly --}}
@elseif(isset($_GET['category']) && $_GET['period'] == 'half-yearly')
{{ __('Type') }} |
@foreach ($monthList as $month)
{{ $month }} |
@endforeach
{{ __('Income : ') }} |
{{ __('Revenue') }} |
@foreach ($revenueIncomeTotal as $revenue)
@foreach ($revenue as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Invoice') }} |
@foreach ($invoiceIncomeTotal as $invoice)
@foreach ($invoice as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Expense : ') }} |
{{ __('Payment') }} |
@foreach ($paymentExpenseTotal as $payment)
@foreach ($payment as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Bill') }} |
@foreach ($billExpenseTotal as $bill)
@foreach ($bill as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Profit = Income - Expense ') }} |
{{ __('Profit') }}
|
@foreach ($profit as $prft)
@foreach ($prft as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{-- yearly --}}
@elseif(isset($_GET['category']) && $_GET['period'] == 'yearly')
{{ __('Type') }} |
@foreach ($monthList as $month)
{{ $month }} |
@endforeach
{{ __('Income : ') }} |
{{ __('Revenue') }} |
@foreach ($revenueIncomeTotal as $revenue)
@foreach ($revenue as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Invoice') }} |
@foreach ($invoiceIncomeTotal as $invoice)
@foreach ($invoice as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Expense : ') }} |
{{ __('Payment') }} |
@foreach ($paymentExpenseTotal as $payment)
@foreach ($payment as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Bill') }} |
@foreach ($billExpenseTotal as $bill)
@foreach ($bill as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Profit = Income - Expense ') }} |
{{ __('Profit') }}
|
@foreach ($profit as $prft)
@foreach ($prft as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
@else
{{ __('Type') }} |
@foreach ($monthList as $month)
{{ $month }} |
@endforeach
{{ __('Income : ') }} |
{{ __('Revenue') }} |
@foreach ($revenueIncomeTotal as $revenue)
@foreach ($revenue as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Invoice') }} |
@foreach ($invoiceIncomeTotal as $invoice)
@foreach ($invoice as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Expense : ') }} |
{{ __('Payment') }} |
@foreach ($paymentExpenseTotal as $payment)
@foreach ($payment as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Bill') }} |
@foreach ($billExpenseTotal as $bill)
@foreach ($bill as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
{{ __('Profit = Income - Expense ') }} |
{{ __('Profit') }}
|
@foreach ($profit as $prft)
@foreach ($prft as $value)
{{ \Auth::user()->priceFormat($value) }} |
@endforeach
@endforeach
@endif