@extends('layout.backend')
@section('styles')
@parent
@endsection
@section('content')
@foreach($graph as $row)
@if (count($regions)>0)
@foreach($regions as $id=>$name)
| {!! $name !!} |
{!! str_repeat(' ', $row['total']>0 ? intval($row['value'][$id]/($row['total']/100) * 0.3 ) : 0) !!} {!! $row['value'][$id] !!} ({{ $row['total']>0 ? intval($row['value'][$id]/($row['total']/100)) : 0 }}%) |
@endforeach
@endif
@endforeach
@endsection