Minor fixes

This commit is contained in:
David Bomba 2023-07-07 16:10:46 +10:00
parent 1af53b9696
commit 2d89396312
2 changed files with 6 additions and 5 deletions

View File

@ -4,11 +4,12 @@ APP_KEY=base64:RR++yx2rJ9kdxbdh3+AmbHLDQu+Q76i++co9Y8ybbno=
APP_DEBUG=false APP_DEBUG=false
APP_URL=http://localhost APP_URL=http://localhost
REACT_URL=http://localhost:3001
DB_CONNECTION=mysql DB_CONNECTION=mysql
MULTI_DB_ENABLED=false MULTI_DB_ENABLED=false
DB_HOST=127.0.0.1 DB_HOST=localhost
DB_DATABASE=ninja DB_DATABASE=ninja
DB_USERNAME=ninja DB_USERNAME=ninja
DB_PASSWORD=ninja DB_PASSWORD=ninja

View File

@ -14,7 +14,10 @@ class ClientPortalServiceProvider extends ServiceProvider
*/ */
public function register() public function register()
{ {
app()->bind('customMessage', function () {
return new CustomMessage();
});
} }
/** /**
@ -24,9 +27,6 @@ class ClientPortalServiceProvider extends ServiceProvider
*/ */
public function boot() public function boot()
{ {
app()->bind('customMessage', function () {
return new CustomMessage();
});
} }
} }