@extends ('layouts.default') @section ('content')
@if (Session::has('error'))
{{{ Session::get('error') }}}
@endif
@include('xero.partials._header')
{{ $range_type }} TURNOVER

{{ isset($organisation) ? $organisation : ''}}

@if($range_type == 'DAILY')
@foreach ($data_array as $key => $value)
{{ $value['date'] }}
|
{{ $currency }} {{ $value['income'] }}
@endforeach
@elseif($range_type == 'MONTHLY') @include('xero.partials._monthly_and_debtordays') @else
@foreach ($data_array as $key => $value)
{{ $value['date'] }}
|
{{ $currency }} {{ $value['income'] }}
|
-
{{ $value['percent'] }}
@endforeach
@endif @include('xero.partials._branch_selector') @include('xero.partials._footer') @stop