public function show($id)
 {
     $position = Position::findOrFail($id);
     return response()->view('positions.show', compact('position'));
 }