/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $accounttypes = AccountType::paginate(15);
     return view('accounttype.index', compact('accounttypes'));
 }