blessing-skin-server/resources/views/setup/updates/changelog.blade.php
2019-05-03 09:08:39 +08:00

17 lines
401 B
PHP

@extends('setup.updates.master')
@section('content')
<h1>
@lang('setup.updates.changelog.title')
@include('setup.wizard.language')
</h1>
{!! app('parsedown')->text(
@file_get_contents(resource_path('misc/changelogs/'.app()->getLocale().'/'.config('app.version').'.md'))
) !!}
<p class="step">
<a href="{{ url('/') }}" class="button button-large">@lang('general.index')</a>
</p>
@endsection