/**
  * Show the application dashboard.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $emails = Newsletter::latest()->paginate(30);
     return view('admin.home', ['emails' => $emails]);
 }