Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Rias committed Mar 16, 2020
1 parent 7a5f238 commit 7f96311
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Mailcoach

## 2.0.8 - 2020-03-16

- move registering settings to register method

## 2.0.7 - 2020-03-16

- allow setting app name & url from settings
Expand Down
8 changes: 5 additions & 3 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ public function boot()
'error' => 'error',
]);

View::composer('app.layouts.partials.health', HealthViewComposer::class);
}

public function register()
{
$this
->registerAppConfiguration()
->registerMailConfiguration()
->registerTransactionalMailConfiguration()
->registerEditorConfiguration();


View::composer('app.layouts.partials.health', HealthViewComposer::class);
}

protected function registerAppConfiguration(): self
Expand Down

0 comments on commit 7f96311

Please sign in to comment.