@extends('layouts.master')
@section('title', 'Conflict Checks')
@section('content')
{{ $title ?? 'Conflict Checks' }}
{{ $subtitle ?? 'Review conflict screening results before opening matters.' }}
Match Type
Matched Name
Related Matter
Relationship
Actions
@forelse($checks ?? [] as $check)
{{ $check['type'] }}
{{ $check['name'] }}
{{ $check['matter'] }}
{{ $check['relationship'] }}
@empty
No conflict checks found.
@endforelse
@endsection