2018-02-06 06:16:24 +08:00
|
|
|
@extends('installer::app')
|
|
|
|
@section('title', 'Update phpVMS')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<h2>phpvms updater</h2>
|
|
|
|
<p>Updates have been found, click run to complete the update!.</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::open(['route' => 'update.run_migrations', 'method' => 'post']) }}
|
2018-02-06 06:16:24 +08:00
|
|
|
<p style="text-align: right">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::submit('Run >>', ['class' => 'btn btn-success']) }}
|
2018-02-06 06:16:24 +08:00
|
|
|
</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::close() }}
|
2018-02-06 06:16:24 +08:00
|
|
|
@endsection
|