예제 #1
0
 /**
  * Display a listing of the Email.
  *
  * @return Response
  */
 public function index()
 {
     $emails = $this->emailRepository->paginate(10);
     return view('emails.index')->with('emails', $emails);
 }