{{ $animal->type }} · {{ $animal->breed ?? 'unspecified breed' }}

{{ $animal->tag_id }}

Status

{{ $animal->status }}

Sex

{{ $animal->sex }}

Current weight

{{ $animal->current_weight_kg ?? '—' }} kg

Arrived

{{ $animal->date_of_arrival->format('d M Y') }}

{{-- Growth --}}

Growth & health history

    @forelse ($animal->growthRecords as $g)
  • {{ $g->record_date->format('d M Y') }} — {{ $g->health_status ?? 'n/a' }} {{ $g->weight_kg ?? '—' }} kg
  • @empty
  • No records yet.
  • @endforelse
@csrf
{{-- Production --}}

Production history

    @forelse ($animal->productions as $p)
  • {{ $p->production_date->format('d M Y') }} — {{ $p->production_type }} {{ $p->quantity }} {{ $p->unit }}
  • @empty
  • No production recorded yet.
  • @endforelse
@csrf
{{-- Reproduction --}}

Reproduction records

    @forelse ($animal->reproductions as $r)
  • Birth: {{ optional($r->actual_birth_date)->format('d M Y') ?? 'pending' }}

    {{ $r->offspring_count }} offspring ({{ $r->males_born }}M / {{ $r->females_born }}F)

  • @empty
  • No reproduction records yet.
  • @endforelse
@csrf
{{-- Sale --}}

Sale

@if ($animal->sale->isNotEmpty()) @foreach ($animal->sale as $s)

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') }}

@endforeach @else

This animal has not been sold.

@csrf
@endif