/**
  * Display the specified resource.
  *
  * @param  int  $rut
  * @return Response
  */
 public function show($rut)
 {
     //
     $empleado = Empleado::withTrashed()->findOrFail($rut);
     return view('empleados.show')->with('empleado', $empleado);
 }