@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | protected function mapWebRoutes() |
55 | 55 | { |
56 | 56 | Route::middleware('web') |
57 | - ->namespace($this->namespace) |
|
58 | - ->group(base_path('routes/web.php')); |
|
57 | + ->namespace($this->namespace) |
|
58 | + ->group(base_path('routes/web.php')); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | protected function mapApiRoutes() |
69 | 69 | { |
70 | 70 | Route::prefix('api') |
71 | - ->namespace($this->apiNamespace) |
|
72 | - ->group(base_path('routes/api.php')); |
|
71 | + ->namespace($this->apiNamespace) |
|
72 | + ->group(base_path('routes/api.php')); |
|
73 | 73 | } |
74 | 74 | } |
@@ -21,9 +21,9 @@ |
||
21 | 21 | public function __construct(User $user) |
22 | 22 | { |
23 | 23 | UserSetting::firstOrCreate([ |
24 | - 'user_id' => $user->id, |
|
25 | - 'hourly_rate' => 0, |
|
26 | - 'currency' => 'GBP', |
|
24 | + 'user_id' => $user->id, |
|
25 | + 'hourly_rate' => 0, |
|
26 | + 'currency' => 'GBP', |
|
27 | 27 | ]); |
28 | 28 | } |
29 | 29 | } |