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

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

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