2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/setup')
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2022-06-24 16:00:15 -07:00
|
|
|
{{ trans('general.setup_migrations') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="col-lg-12" style="padding-top: 20px;">
|
|
|
|
@if (trim($output)=='Nothing to migrate.')
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="alert alert-warning">
|
2021-09-24 07:21:30 -07:00
|
|
|
<i class="fas fa-exclamation-triangle"></i>
|
2022-06-24 16:00:15 -07:00
|
|
|
{{ trans('general.setup_no_migrations') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="alert alert-success">
|
2021-09-26 01:11:08 -07:00
|
|
|
<i class="fas fa-check"></i>
|
2022-06-24 16:00:15 -07:00
|
|
|
{{ trans('general.setup_successful_migrations') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-06-24 16:00:15 -07:00
|
|
|
<p>{{ trans('general.setup_migration_output') }} </p>
|
2016-12-27 12:03:47 -08:00
|
|
|
<pre>{{ $output }}</pre>
|
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('button')
|
|
|
|
<form action="{{ route('setup.user') }}" method="GET">
|
2022-06-24 16:00:15 -07:00
|
|
|
<button class="btn btn-primary">{{ trans('general.setup_migrations_create_user') }}</button>
|
2016-03-25 01:18:05 -07:00
|
|
|
</form>
|
|
|
|
@parent
|
|
|
|
@stop
|