@@ -16,7 +16,7 @@ |
||
| 16 | 16 | public function handle($request, Closure $next) |
| 17 | 17 | { |
| 18 | 18 | // Check for Internet Explorer 11 |
| 19 | - if (preg_match("/Trident\/7.0;(.*)rv:11.0/", $_SERVER["HTTP_USER_AGENT"], $match) != 0) |
|
| 19 | + if(preg_match("/Trident\/7.0;(.*)rv:11.0/", $_SERVER["HTTP_USER_AGENT"], $match) != 0) |
|
| 20 | 20 | { |
| 21 | 21 | return response()->make(view('error.426'), 426); |
| 22 | 22 | } |
@@ -34,12 +34,12 @@ |
||
| 34 | 34 | $totalLinks = FileLinks::where('user_id', Auth::user()->user_id)->count(); |
| 35 | 35 | |
| 36 | 36 | return view('dashboard', [ |
| 37 | - 'custFavs' => $custFavs, |
|
| 38 | - 'tipFavs' => $tipFavs, |
|
| 39 | - 'tips30' => $tips30Days, |
|
| 40 | - 'tipsAll' => $tipsTotal, |
|
| 41 | - 'activeLinks' => $activeLinks, |
|
| 42 | - 'totalLinks' => $totalLinks, |
|
| 37 | + 'custFavs' => $custFavs, |
|
| 38 | + 'tipFavs' => $tipFavs, |
|
| 39 | + 'tips30' => $tips30Days, |
|
| 40 | + 'tipsAll' => $tipsTotal, |
|
| 41 | + 'activeLinks' => $activeLinks, |
|
| 42 | + 'totalLinks' => $totalLinks, |
|
| 43 | 43 | ]); |
| 44 | 44 | } |
| 45 | 45 | |