{{-- quartly --}}
@if(isset($_GET['category']) && $_GET['period'] == 'quarterly')
{{__('Category')}} |
@foreach($monthList as $month)
{{$month}} |
@endforeach
{{__('Payment :')}} |
@foreach($expenseArr as $i=>$expense)
{{$expense['category']}} |
@foreach($expense['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Bill :')}} |
@foreach($billArray as $i=>$bill)
{{$bill['category']}} |
@foreach($bill['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Expense = Payment + Bill :')}} |
{{__('Total')}} |
@foreach($chartExpenseArr as $i=>$expense)
@foreach($expense as $key=>$value)
{{\Auth::user()->priceFormat($value)}} |
@endforeach
@endforeach
{{-- half-yearly --}}
@elseif(isset($_GET['category']) && $_GET['period'] == 'half-yearly')
{{__('Category')}} |
@foreach($monthList as $month)
{{$month}} |
@endforeach
{{__('Payment :')}} |
@foreach($expenseArr as $i=>$expense)
{{$expense['category']}} |
@foreach($expense['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Bill :')}} |
@foreach($billArray as $i=>$bill)
{{$bill['category']}} |
@foreach($bill['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Expense = Payment + Bill :')}} |
{{__('Total')}} |
@foreach($chartExpenseArr as $i=>$expense)
@foreach($expense as $key=>$value)
{{\Auth::user()->priceFormat($value)}} |
@endforeach
@endforeach
{{-- yearly --}}
@elseif(isset($_GET['category']) && $_GET['period'] == 'yearly')
{{__('Category')}} |
@foreach($monthList as $month)
{{$month}} |
@endforeach
{{__('Payment :')}} |
@foreach($expenseArr as $i=>$expense)
{{$expense['category']}} |
@foreach($expense['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Bill :')}} |
@foreach($billArray as $i=>$bill)
{{$bill['category']}} |
@foreach($bill['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Expense = Payment + Bill :')}} |
{{__('Total')}} |
@foreach($chartExpenseArr as $i=>$expense)
@foreach($expense as $key=>$value)
{{\Auth::user()->priceFormat($value)}} |
@endforeach
@endforeach
@else
{{__('Category')}} |
@foreach($monthList as $month)
{{$month}} |
@endforeach
{{__('Payment :')}} |
@foreach($expenseArr as $i=>$expense)
{{$expense['category']}} |
@foreach($expense['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Bill :')}} |
@foreach($billArray as $i=>$bill)
{{$bill['category']}} |
@foreach($bill['data'] as $j=>$data)
{{\Auth::user()->priceFormat($data)}} |
@endforeach
@endforeach
{{__('Expense = Payment + Bill :')}} |
{{__('Total')}} |
@foreach($chartExpenseArr as $i=>$expense)
@foreach($expense as $key=>$value)
{{\Auth::user()->priceFormat($value)}} |
@endforeach
@endforeach
@endif