Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
561 B
PHP
Raw Permalink Normal View History

@extends('layouts.error')
@section('title')
{{ __('exceptions.database_inconsistent.title') }}
@endsection
@section('content')
<h3>{{ __('exceptions.database_inconsistent.header') }}</h3>
<div class="message-block">
@foreach($results as $result)
<p>
<h2>{{ $result->getMessage() }}</h2>
@if($result->hasFix())
<div style="margin-left: 3em; font-size: 18px">{{ $result->getFix() }}</div>
@endif
</p>
@endforeach
</div>
@endsection