@extends('layouts.app')
@section('content')
-
Ordenes de servicio
{{ $customer->countOrdersbyStatus(1) }}
{{ $customer->countOrdersbyStatus(3) }}
{{ $customer->countOrdersbyStatus(5) }}
-
Analíticas
{{ $customer->orders()->where('status_id', 5)->count() }}
-
Contracto
{{ $customer->contracts->count() }}
-
Planos
{{ $customer->floorplans->count() }}
-
Zonas
{{ $customer->applicationAreas->count() }}
-
Dispositivos
{{ $count_devices }}
-
Archivos
{{ $customer->files->where('path', '!=', null)->count() }}
-
Areas de oportunidad
{{ $opportunity_areas->count() }}
Pendientes
# |
Actividad |
Fecha |
Acciones |
@forelse ($pendings as $index => $pending)
{{ ++$index }} |
{{ $pending['content'] }} |
{{ $pending['date'] }} |
@can('write_customer')
{{ __('buttons.edit') }}
@endcan
|
@empty
No hay pendientes por el momento. |
@endforelse
@endsection