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

22 lines
451 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('setup.updates.master')
@section('content')
<h1>升级成功</h1>
<p>数据库升级成功,欢迎使用 Blessing Skin Server {{ config('app.version') }}</p>
{{-- if any tip is given --}}
@if (!empty($tips))
<p><b>升级提示:</b></p>
<ul>
@foreach ($tips as $tip)
<li><p>{{ $tip }}</p></li>
@endforeach
</ul>
@endif
<p class="step">
<a href="{{ url('/') }}" class="button button-large">首页</a>
</p>
@endsection