@extends('layouts.app') @section('external_css') @endsection @section('content')
Pacientes Novo
@if(count($pacientes) > 0) @foreach($pacientes as $paciente) @endforeach
Id Nome Telefone Editar Excluir
{{ $paciente->id }} {{ $paciente->nome }} {{ $paciente->telefone }}
{{ csrf_field() }} {{ method_field('DELETE') }}
@else

Não há pacientes cadastrados no momento!

@endif
@endsection @section('external_js') @if(count('pacientes') > 0) @endif @endsection