@extends('adminlte::page')
@section('title_prefix', __('Dashboard'))
@section('content_header')
{{ __('Dashboard') }}
@stop
@section('content')
| Cliente |
Quantidade de recursos |
|
@foreach($recursos_30_dias_sem_resposta as $cliente => $item)
| {{ $cliente }} |
{{ count($item) }} |
Verificar |
@endforeach
| Cliente |
Quantidade de recursos |
|
@foreach($recursos_60_dias_sem_resposta as $cliente => $item)
| {{ $cliente }} |
{{ count($item) }} |
Verificar |
@endforeach
| Cliente |
Quantidade de recursos |
|
@foreach($recursos_90_dias_sem_resposta as $cliente => $item)
| {{ $cliente }} |
{{ count($item) }} |
Verificar |
@endforeach
@stop