@extends('layouts.app') @section('title', 'Painel do Vendedor') @section('content')

Meus Clientes

@if (session('success')) @endif
@forelse($clients as $client) @empty @endforelse
Nome / Contato Token (Tela) Data Cadastro Vencimento
{{ $client->name }}
{{ $client->email }}
{{ $client->phone ?? 'Sem telefone' }}
{{ $client->screens->first()->playback_token ?? 'N/A' }} {{ $client->created_at->format('d/m/Y') }} @php $plan = $client->plans->where('expires_at', '>', now())->first(); @endphp @if($plan) {{ $plan->expires_at->format('d/m/Y') }} @else Expirado/Sem Plano @endif
Você ainda não cadastrou nenhum cliente.
@endsection @push('scripts') @endpush