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