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