@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ __('Pacientes Activos') }}
@include('includes.alerts')
@foreach ($pacientes as $paciente) @endforeach
Fecha Nombre Email Tel Casa Tel Oficina Tel Celular Direccion
{{ $paciente->updated_at->translatedFormat('d \d\e F \d\e Y') }} {{ $paciente->nombre }} {{ $paciente->email }} {{ $paciente->t_casa }} {{ $paciente->t_oficina }} {{ $paciente->t_celular }} {{ $paciente->direccion }} @can('paciente_delete')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @endsection