@extends('layouts.error')
@section('title')
@lang('exceptions.database_inconsistent.title')
@endsection
@section('content')
@lang('exceptions.database_inconsistent.header')
@foreach($results as $result)
{{ $result->getMessage() }}
@if($result->hasFix())
{{ $result->getFix() }}
@endif
@endforeach
@endsection