@extends('masterpage.masterpage') @section ('content')

Consultas

@if(Session::has('message'))
Alerta!
{{ Session::get('message')}}
@endif @if(Session::has('error'))
Alert!
{{ Session::get('error')}}
@endif

Olá , as consultas de {{$paciente->name}}

@foreach ($atendimentos as $atendimento) @endforeach
Consulta Telefone Data Ações
{{$atendimento->consulta }} {{$atendimento->phone }} {{$atendimento->created_at->format('d/m/Y H:m:s') }}
@if(Auth::user()->perfil == 1) @endif
@stop @section('scripts') @stop