@extends('layouts.backend') @section('content')

Reports - Revenue

Year
Month
Data
@foreach ($years as $y)
{{$y->year}}
@foreach ($y->months as $m)
{{$getThis->global()->monthName($m->month)}}
@if ($m->total_gbp > 0)
£ {{number_format($m->total_gbp,2,'.',',')}}
@endif @if ($m->total_eur > 0)
€ {{number_format($m->total_eur,2,'.',',')}}
@endif
@endforeach
@endforeach
@endsection