@extends('layout') @section('title', 'Relationships') @section('content')
People & organizations

Relationships

Canonical customers, prospects, partners, vendors, and people with one accountable owner and connected history.

@if(auth()->user()->canAtlas('customers.manage'))+ New relationship@endif
@if($actors->isEmpty())
R

No relationships yet

Create the first real client, prospect, partner, vendor, or person.

@else
@foreach($actors as $actor)@endforeach
RelationshipStageTypeOwnerContactStatus
{{ $actor->code }}{{ $actor->name }}{{ $actor->legal_name }} {{ str($actor->relationship_stage)->title() }}{{ $actor->type->label() }}{{ $actor->owner?->name ?? 'Unassigned' }}{{ $actor->primary_email ?: $actor->primary_phone ?: 'Not recorded' }}{{ ucfirst($actor->status) }}
{{ $actors->links('components.pagination') }} @endif
@endsection