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

TURNOVER

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

@foreach ($turnover as $key => $value)

{{ $key }}

{{ $currency }}{{ $value }}


@endforeach

{{ number_format($gross_perc, 0) }}%
{{ $currency }}{{ $gross }}
GROSS

PROFIT

{{ number_format($net_perc, 0) }}%
{{ $currency }}{{ $net }}
NET

AVG
DEBTOR DAYS

{{ $debtor_days }}

@include('xero.partials._branch_selector')
View Branch Info
@include('xero.partials._footer') @stop