/** * Display a listing of the Cuenta. * * @return Response */ public function index() { $id = Auth::id(); $cuenta = null; if ($this->usuarioRepository->hasCuenta($id)) { $cuenta = $this->usuarioRepository->Cuenta($id); } $cuentas = $this->cuentaRepository->all(); return view('cuentas.index')->with('cuentas', $cuentas)->with('cuenta', $cuenta); }
/** * Display a listing of the Cuenta. * * @return Response */ public function index() { $cuentas = $this->cuentaRepository->all(); /*$comments = $this->usuarioRepository->find(1)->where('id', '=', $cuentas['usuario_id'])->first();*/ return view('cuentas.index')->with('cuentas', $cuentas); }