2021-06-14 13:33:59 -05:00
|
|
|
@extends('layouts.error')
|
|
|
|
|
|
|
|
|
|
@section('title')
|
2021-11-28 21:17:11 -06:00
|
|
|
{{ __('exceptions.database_inconsistent.title') }}
|
2021-06-14 13:33:59 -05:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
|
|
@section('content')
|
2021-11-28 21:17:11 -06:00
|
|
|
<h3>{{ __('exceptions.database_inconsistent.header') }}</h3>
|
2021-06-14 13:33:59 -05:00
|
|
|
|
|
|
|
|
<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
|