{{ $animal->type }} · {{ $animal->breed ?? 'unspecified breed' }}
Status
{{ $animal->status }}
Sex
{{ $animal->sex }}
Current weight
{{ $animal->current_weight_kg ?? '—' }} kg
Arrived
{{ $animal->date_of_arrival->format('d M Y') }}
Birth: {{ optional($r->actual_birth_date)->format('d M Y') ?? 'pending' }}
{{ $r->offspring_count }} offspring ({{ $r->males_born }}M / {{ $r->females_born }}F)
Sold {{ $s->sale_date->format('d M Y') }} to {{ $s->buyer_name }} ({{ $s->buyer_location ?? 'n/a' }})
{{ number_format($s->sale_price) }} {{ \App\Models\Setting::get('currency','RWF') }}
This animal has not been sold.
@endif