@extends('layouts.dashboard_layout') @section('title', 'Clientes') @section('content')
Logo | Nombre | Ăšltima Actividad | Responsables | Estado | Seguimiento | |
---|---|---|---|---|---|---|
![]() |
{{ $cliente?->nombre_empresa ?? '' }} | {{ $cliente->tareas->isNotEmpty() ? $cliente->tareas->first()->fecha_fin : '' }} | {{ optional($cliente?->proyecto?->last())->responsables ?? '' }} | @if ($cliente->proyecto->last()) {{ $cliente?->proyecto?->last()->estado ?? '' }} @endif |
@if ($cliente?->tareas->isNotEmpty())
Ver tareas
@else
Ver tareas
@endif
|
@include('dashboard.clientes.eliminar') |