blessing-skin-server/resources/views/setup/updates/success.tpl

22 lines
451 B
PHP
Raw Normal View History

2016-08-11 13:17:30 +08:00
@extends('setup.updates.master')
@section('content')
<h1>升级成功</h1>
2016-08-28 21:48:15 +08:00
<p>数据库升级成功,欢迎使用 Blessing Skin Server {{ 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))
2016-09-28 22:56:21 +08:00
<p><b>升级提示:</b></p>
<ul>
@foreach ($tips as $tip)
<li><p>{{ $tip }}</p></li>
@endforeach
</ul>
@endif
2016-08-11 13:17:30 +08:00
<p class="step">
<a href="{{ url('/') }}" class="button button-large">首页</a>
2016-08-11 13:17:30 +08:00
</p>
@endsection