Skip to content

Commit

Permalink
Hotfix validación 2
Browse files Browse the repository at this point in the history
  • Loading branch information
eperezf committed Jun 11, 2019
1 parent 04b057b commit 8c58ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/Http/Controllers/PasantiaController.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public function paso2Control(Request $request){
'horas' => 'integer|between:25,45|nullable',
'pariente' => 'boolean|nullable',
'otraEmpresa' => 'boolean|nullable',
'rolPariente' => 'required_if:pariente,1|alpha'
'rolPariente' => 'required_if:pariente,1'
]);
$userId = Auth::id();
$pasantia = Pasantia::where('idAlumno', $userId)->first();
Expand Down

0 comments on commit 8c58ef2

Please sign in to comment.