@@ -49,7 +49,7 @@ |
||
49 | 49 | <br> |
50 | 50 | <small> |
51 | 51 | <?php |
52 | - $default_error_message = "Please return to <a href='".url('')."'>our homepage</a>."; |
|
52 | + $default_error_message = "Please return to <a href='".url('')."'>our homepage</a>."; |
|
53 | 53 | ?> |
54 | 54 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
55 | 55 | </small> |
@@ -49,7 +49,7 @@ |
||
49 | 49 | <br> |
50 | 50 | <small> |
51 | 51 | <?php |
52 | - $default_error_message = "Please return to <a href='".url('')."'>our homepage</a>."; |
|
52 | + $default_error_message = "Please return to <a href='".url('')."'>our homepage</a>."; |
|
53 | 53 | ?> |
54 | 54 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
55 | 55 | </small> |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | 'middleware' => 'web', |
80 | 80 | 'prefix' => config('backpack.base.route_prefix'), |
81 | 81 | ], |
82 | - function () { |
|
82 | + function() { |
|
83 | 83 | // if not otherwise configured, setup the auth routes |
84 | 84 | if (config('backpack.base.setup_auth_routes')) { |
85 | 85 | Route::auth(); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | public function register() |
103 | 103 | { |
104 | 104 | // register the current package |
105 | - $this->app->bind('base', function ($app) { |
|
105 | + $this->app->bind('base', function($app) { |
|
106 | 106 | return new Base($app); |
107 | 107 | }); |
108 | 108 |