22 lines
526 B
PHP
22 lines
526 B
PHP
@extends('setup.updates.master')
|
||
|
||
@section('content')
|
||
<h1>{{ trans('setup.updates.success.title') }}</h1>
|
||
|
||
<p>{{ trans('setup.updates.success.tip-success') }} {{ config('app.version') }}!</p>
|
||
|
||
{{-- if any tip is given --}}
|
||
@if (!empty($tips))
|
||
<p><b>{{ trans('setup.updates.success.tip-update') }}</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">{{ trans('general.index') }}</a>
|
||
</p>
|
||
@endsection
|