/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $Contacts = Contact::where('deleted_at', '=', null)->paginate(20);
     $context = ['Contacts' => $Contacts];
     return \View::make('Admin.contact.index', $context);
 }