mirror of
https://github.com/snipe/snipe-it.git
synced 2026-08-18 11:15:42 +00:00
34 lines
801 B
PHP
34 lines
801 B
PHP
@extends('layouts/setup')
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/settings/general.setup_migrations') }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
<div class="col-lg-12" style="padding-top: 20px;">
|
|
@if (trim($output)=='Nothing to migrate.')
|
|
<div class="col-md-12">
|
|
<x-alert type="warning" icon="warning">
|
|
{{ trans('general.setup_no_migrations') }}
|
|
</x-alert>
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<p>{{ trans('general.setup_migration_output') }} </p>
|
|
<pre>{{ $output }}</pre>
|
|
</div>
|
|
@stop
|
|
|
|
@section('button')
|
|
|
|
<a href="{{ route('setup.user') }}" class="btn btn-primary">
|
|
{{ trans('general.setup_next') }}:
|
|
{{ trans('general.setup_create_admin') }}
|
|
<i class="fa-solid fa-angles-right"></i>
|
|
</a>
|
|
@parent
|
|
@stop
|