@extends('layouts/setup') {{-- Page title --}} @section('title') {{ trans('gerneral.setup_migrations') }} @parent @stop {{-- Page content --}} @section('content')
@if (trim($output)=='Nothing to migrate.')
{{ trans('gerneral.setup_no_migrations') }}
@else
{{ trans('gerneral.setup_successful_migrations') }}
@endif

{{ trans('gerneral.setup_migration_output') }}

{{ $output }}
@stop @section('button')
@parent @stop