Skip to content

Commit

Permalink
Fix Style: index de la vista pacientes
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenU21 committed Dec 4, 2022
1 parent 0815f1c commit cb8a2a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/doctors/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
<td>
{{$doctor -> phone}}
</td>

<td>

<form action="{{ url('/medicos/'.$doctor->id) }}" method="POST">
@csrf
@method('DELETE')
Expand Down
8 changes: 8 additions & 0 deletions resources/views/patients/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<th scope="col">Nombre</th>
<th scope="col">Correo</th>
<th scope="col">Cédula</th>
<th scope="col">Dirección</th>
<th scope="col">Teléfono</th>
<th scope="col">Opciones</th>
</tr>
</thead>
Expand All @@ -44,6 +46,12 @@
<td>
{{ $patient->identity_card}}
</td>
<td>
{{$patient -> address}}
</td>
<td>
{{$patient -> phone}}
</td>
<td>
<form action="{{ url('pacientes/'.$patient->id)}}" method="POST">
@csrf
Expand Down

0 comments on commit cb8a2a9

Please sign in to comment.