Bumped version number to 2.2.0-beta.1. Use the url helper instead of the config to get the app root URL

This commit is contained in:
Andy Heathershaw 2019-07-14 16:33:24 +01:00
parent 806d0696f0
commit 5947b6e08c
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
return [
// Version number of Blue Twilight
'version' => '2.2.0-alpha.1',
'version' => '2.2.0-beta.1',
/*
|--------------------------------------------------------------------------

View File

@ -1,7 +1,7 @@
@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
@component('mail::header', ['url' => url('/')])
{{ UserConfig::get('app_name') }}
@endcomponent
@endslot

View File

@ -1,7 +1,7 @@
@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
@component('mail::header', ['url' => url('/')])
{{ UserConfig::get('app_name') }}
@endcomponent
@endslot