Пример #1
0
 public function postFunds()
 {
     $form = $this->uploadFundForm;
     $form->handleRequest(\Request::instance());
     if ($form->isValid()) {
         $country = Utility::getCountryCodeByIP();
         $blockedCountries = Setting::get('site.countriesCodesBlockedFromUploadFunds');
         $blockedCountries = explode(',', $blockedCountries);
         if (in_array($country['code'], $blockedCountries)) {
             \Flash::error("Something went wrong!");
             return Redirect::route('lender:funds')->withForm($form);
         }
         return $form->makePayment();
     }
     \Flash::error("Entered Amounts are invalid!");
     return Redirect::route('lender:funds')->withForm($form);
 }
Пример #2
0
 public function getJoin()
 {
     $country = Utility::getCountryCodeByIP();
     return View::make('lender.join', compact('country'), ['form' => $this->joinForm, 'facebookJoinUrl' => $this->facebookService->getLoginUrl('lender:facebook-join')]);
 }
Пример #3
0
 public function getCountry()
 {
     $country = Utility::getCountryCodeByIP();
     return View::make('borrower.join.country', compact('country'), ['form' => $this->countryForm]);
 }