@extends('layouts.app') @section('content')
| Nombre | Cliente | Vence | Dias |
|---|---|---|---|
| {{ Str::limit($contrato->nombre, 20) }} | {{ Str::limit($contrato->cliente->nombre ?? '', 15) }} | {{ $contrato->fecha_fin->format('d/m/Y') }} | @php $dias = now()->diffInDays($contrato->fecha_fin, false); @endphp {{ $dias }}d |
| Sin contratos proximos a vencer | |||