@@ -15,7 +15,7 @@ |
||
| 15 | 15 | |
| 16 | 16 | public function selectCurrencies(string $countryCode) |
| 17 | 17 | { |
| 18 | - $html= $this->render('pages.tontine.currency', [ |
|
| 18 | + $html = $this->render('pages.tontine.currency', [ |
|
| 19 | 19 | 'currencies' => $this->localeService->getCountryCurrencies($countryCode) |
| 20 | 20 | ]); |
| 21 | 21 | $this->response->html('select_currency_container', $html); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $session = $this->tenantService->getSession($sessionId); |
| 40 | 40 | view()->share($this->reportService->getSessionReport($session)); |
| 41 | 41 | // Show the html page |
| 42 | - if($request->has('html')) |
|
| 42 | + if ($request->has('html')) |
|
| 43 | 43 | { |
| 44 | 44 | return view("tontine.report.$template.session"); |
| 45 | 45 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $session = $this->tenantService->getSession($sessionId); |
| 84 | 84 | view()->share($this->reportService->getProfitsReport($session)); |
| 85 | 85 | // Show the html page |
| 86 | - if($request->has('html')) |
|
| 86 | + if ($request->has('html')) |
|
| 87 | 87 | { |
| 88 | 88 | return view("tontine.report.$template.profits"); |
| 89 | 89 | } |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $round = $this->tenantService->getRound($roundId); |
| 113 | 113 | view()->share($this->reportService->getRoundReport($round)); |
| 114 | 114 | // Show the html page |
| 115 | - if($request->has('html')) |
|
| 115 | + if ($request->has('html')) |
|
| 116 | 116 | { |
| 117 | 117 | return view("tontine.report.$template.round"); |
| 118 | 118 | } |