2020-02-22 09:36:27 +08:00
|
|
|
@extends('updater::app')
|
2019-12-13 04:07:35 +08:00
|
|
|
@section('title', 'Update Completed')
|
|
|
|
@section('content')
|
2020-02-02 02:05:56 +08:00
|
|
|
<div style="align-content: center;">
|
|
|
|
{{ Form::open(['route' => 'update.complete', 'method' => 'GET']) }}
|
2019-12-13 04:07:35 +08:00
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
<pre class="lang-sh">
|
2019-12-13 04:07:35 +08:00
|
|
|
<code class="lang-sh">
|
|
|
|
{{ $console_output }}
|
|
|
|
</code>
|
|
|
|
</pre>
|
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
<p style="text-align: right">
|
|
|
|
{{ Form::submit('Complete >>', ['class' => 'btn btn-success']) }}
|
|
|
|
</p>
|
|
|
|
{{ Form::close() }}
|
|
|
|
</div>
|
2019-12-13 04:07:35 +08:00
|
|
|
@endsection
|