/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     return FooterPics::all();
 }
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $footerPics = FooterPics::all();
     $resp = view('admin.footerpicseq', array('footerPics' => $footerPics));
     return $resp;
 }