@extends('layout.backend') @section('styles') @parent @endsection @section('content')
MÉTRICAS DE MÉDICOS
@foreach($graph as $row)
@if (count($regions)>0) @foreach($regions as $id=>$name) @endforeach
{!! $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 }}%)
@endif
@endforeach
@endsection