/**
  * Display the specified resource.
  *
  * @param int $id        	
  * @return Response
  */
 public function show($id)
 {
     $Contact = Contact::findOrFail($id);
     $context = ['Contact' => $Contact];
     return \View::make('Admin.contact.show', $context);
 }