@extends('template') @section('conteudo') {{-- Breadcrumb --}} {{-- Cabeçalho --}}

Agendamentos

Calendário de visitas confirmadas
{{-- Card principal --}}
{{-- Filtros --}}
{{-- Tabela --}} @php $agendamentos = [ ['AG20260000001', 'COLÉGIO SANTO AGOSTINHO', '15/06/2026', '08h30', 80, true, 'confirmado'], ['AG20260000002', 'CENTRO SAPIENS', '10/07/2026', '08h30', 45, false, 'confirmado'], ['AG20260000003', 'E.M. DOM PEDRO II', '22/06/2026', '08h30', 60, false, 'confirmado'], ['AG20260000004', 'E.E. BARÃO DE MAUÁ', '18/07/2026', '08h30', 90, true, 'confirmado'], ['AG20260000005', 'IFET', '12/08/2026', '08h30', 70, false, 'confirmado'], ['AG20260000006', 'UNIVALE TURISMO', '25/07/2026', '08h30', 200, true, 'cancelado'], ]; @endphp @foreach($agendamentos as [$codigo, $cliente, $data, $horario, $alunos, $exclusivo, $status]) @endforeach
Código Cliente Data Visita Horário Alunos Exclusividade Status Ações
{{ $codigo }} {{ $cliente }} {{ $data }} {{ $horario }} {{ $alunos }} @if($exclusivo) @else @endif @if($status === 'confirmado') Confirmado @else Cancelado @endif
{{-- Paginação --}}
@endsection