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