Party (property ownership type)

Party refers to who owns the property: a single person (male or female), co-ownership (male–female, male–male, female–female), or an organization. Use the filter below to list properties by party type, or set party type when adding/editing a property in Index Property.

Party types

@if(empty($partyTypes))

No party types defined.

@endif

Filter by party type

Clear

Properties ({{ is_array($partyProperties) ? count($partyProperties) : $partyProperties->count() }})

@php $props = $partyProperties ?? collect(); @endphp @if($props->isEmpty())

No properties found. Add properties in Index Property and set their party (ownership) type.

@else
@foreach($props as $p) @endforeach
Property # Party type Owner Type Boundary / State Docs Actions
{{ $p->property_number }} @if($p->party_type && isset($partyTypes[$p->party_type])) {{ $partyTypes[$p->party_type] }} @else @endif {{ Str::limit($p->owner, 30) }} {{ $p->property_type }} @if($p->boundary) {{ $p->boundary->boundary_number }} @else {{ $p->state ?: '—' }} @endif {{ $p->documents_count ?? 0 }} View
@endif