@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | public function myPhoto() : string |
41 | 41 | { |
42 | - $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
42 | + $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
43 | 43 | return asset($photo); |
44 | 44 | } |
45 | 45 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | $user = $this->usersRepo->findByMail(request("email")); |
32 | 32 | |
33 | - if (! auth('cbAdmin')->attempt($credentials)) { |
|
33 | + if (!auth('cbAdmin')->attempt($credentials)) { |
|
34 | 34 | $resp = redirect()->route('getLogin')->with('message', cbTrans('alert_password_wrong')); |
35 | 35 | sendAndTerminate($resp); |
36 | 36 | } |
@@ -13,8 +13,8 @@ |
||
13 | 13 | */ |
14 | 14 | public function boot() |
15 | 15 | { |
16 | - $this->loadRoutesFrom( __DIR__.'/notifications_routes.php'); |
|
17 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
16 | + $this->loadRoutesFrom(__DIR__.'/notifications_routes.php'); |
|
17 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
@@ -15,8 +15,8 @@ |
||
15 | 15 | public function boot() |
16 | 16 | { |
17 | 17 | $this->app['view']->addNamespace('CbStatistics', __DIR__.'/views'); |
18 | - $this->loadRoutesFrom( __DIR__.'/statistic_route.php'); |
|
19 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
18 | + $this->loadRoutesFrom(__DIR__.'/statistic_route.php'); |
|
19 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -15,8 +15,8 @@ |
||
15 | 15 | public function boot() |
16 | 16 | { |
17 | 17 | $this->app['view']->addNamespace('CbSettings', __DIR__.'/views'); |
18 | - $this->loadRoutesFrom( __DIR__.'/settings_routes.php'); |
|
19 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
18 | + $this->loadRoutesFrom(__DIR__.'/settings_routes.php'); |
|
19 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -14,8 +14,8 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbEmailTpl', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/email_templates_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/email_templates_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -14,8 +14,8 @@ |
||
14 | 14 | public function boot() |
15 | 15 | { |
16 | 16 | $this->app['view']->addNamespace('CbMenu', __DIR__.'/views'); |
17 | - $this->loadRoutesFrom( __DIR__.'/menus_routes.php'); |
|
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
17 | + $this->loadRoutesFrom(__DIR__.'/menus_routes.php'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -13,9 +13,9 @@ |
||
13 | 13 | */ |
14 | 14 | public function boot() |
15 | 15 | { |
16 | - $this->loadRoutesFrom( __DIR__.'/logs_routes.php'); |
|
16 | + $this->loadRoutesFrom(__DIR__.'/logs_routes.php'); |
|
17 | 17 | $this->publishes([__DIR__.'/localization' => resource_path('lang')], 'cb_localization'); |
18 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
18 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -16,7 +16,7 @@ |
||
16 | 16 | { |
17 | 17 | $this->app['view']->addNamespace('CbApiGen', __DIR__.'/views'); |
18 | 18 | $this->loadRoutesFrom(__DIR__.'/api_generator_routes.php'); |
19 | - $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
|
19 | + $this->loadMigrationsFrom(__DIR__.'/migrations'); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |