@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ __('Pacientes') }}
@include('includes.alerts')
@foreach ($pacientes as $paciente) @endforeach
No Nombre Email Tel Casa Tel Celular Direccion Tipo
{{ $paciente->id }} {{ $paciente->nombre }} {{ $paciente->email }} {{ $paciente->t_casa }} {{ $paciente->t_celular }} {{ $paciente->direccion }} {{ $paciente->tipo }} @can('paciente_delete')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @endsection