Skip to content

Commit

Permalink
Replace hard-coded year in plain-text markdown emails (#17684)
Browse files Browse the repository at this point in the history
How plain-text markdown emails have the following header:
```
© 2016 {{ config('app.name') }}. All rights reserved.
```

This changes that to:
```
© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.
```
  • Loading branch information
danilcha authored and taylorotwell committed Jan 30, 2017
1 parent cc41b25 commit ec7a70c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© 2016 {{ config('app.name') }}. All rights reserved.
© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.
@endcomponent
@endslot
@endcomponent

0 comments on commit ec7a70c

Please sign in to comment.