blessing-skin-server/resources/views/setup/updates/success.blade.php

25 lines
534 B
PHP
Raw Normal View History

2016-08-11 13:17:30 +08:00
@extends('setup.updates.master')
@section('content')
2017-01-18 22:31:35 +08:00
<h1>
2018-07-17 11:06:55 +08:00
@lang('setup.updates.success.title')
2017-01-18 22:31:35 +08:00
@include('setup.wizard.language')
</h1>
2016-08-11 13:17:30 +08:00
2018-07-17 11:06:55 +08:00
<p>@lang('setup.updates.success.text', ['version' => config('app.version')])</p>
2016-08-11 13:17:30 +08:00
2016-09-28 22:56:21 +08:00
{{-- if any tip is given --}}
@if (!empty($tips))
2018-07-17 11:06:55 +08:00
<p><b>@lang('setup.updates.success.tips')</b></p>
2016-09-28 22:56:21 +08:00
<ul>
@foreach ($tips as $tip)
2018-08-17 12:09:48 +08:00
<li><p>{!! $tip !!}</p></li>
2016-09-28 22:56:21 +08:00
@endforeach
</ul>
@endif
2016-08-11 13:17:30 +08:00
<p class="step">
2018-07-17 11:06:55 +08:00
<a href="{{ url('/') }}" class="button button-large">@lang('general.index')</a>
2016-08-11 13:17:30 +08:00
</p>
@endsection