@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ __('Pacientes') }}
@include('includes.alerts')
@foreach ($pacientes as $paciente) @endforeach
No Nombre DPI Telefono Direccion Tipo
{{ $paciente->id }} {{ $paciente->nombre }} {{ $paciente->dpi }} {{ $paciente->telefono }} {{ $paciente->direccion }} {{ $paciente->tipo }} @can('paciente_delete')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @endsection