2017-12-15 11:59:54 +08:00
|
|
|
@extends('installer::app')
|
2017-12-15 12:22:33 +08:00
|
|
|
@section('title', 'Database Setup Completed')
|
2017-12-15 11:59:54 +08:00
|
|
|
@section('content')
|
|
|
|
<div style="align-content: center;">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::open(['route' => 'installer.step3', 'method' => 'GET']) }}
|
2017-12-15 11:59:54 +08:00
|
|
|
|
2017-12-15 12:22:33 +08:00
|
|
|
<pre class="lang-sh">
|
|
|
|
<code class="lang-sh">
|
|
|
|
{{--<code class="language-bash">--}}
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ $console_output }}
|
2017-12-15 11:59:54 +08:00
|
|
|
</code>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p style="text-align: right">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::submit('Continue >>', ['class' => 'btn btn-success']) }}
|
2017-12-15 11:59:54 +08:00
|
|
|
</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::close() }}
|
2017-12-15 11:59:54 +08:00
|
|
|
</div>
|
|
|
|
@endsection
|