Active livestock

{{ $stats['animals_active'] }}

{{ $stats['animals_total'] }} total registered

Crops on record

{{ $stats['crops_total'] }}

across all plots

Active employees

{{ $stats['employees_active'] }}

working the farm today

Sales revenue

{{ number_format($stats['animal_sales_revenue'] + $stats['crop_sales_revenue']) }}

{{ \App\Models\Setting::get('currency', 'RWF') }} · livestock + crops

Herd by type

@forelse ($animalsByType as $type => $count)
{{ $type }} {{ $count }}
@empty

No animals registered yet. Register one.

@endforelse

Remaining crop stock

@forelse ($cropStock as $c)
{{ $c['crop_type'] }} {{ number_format($c['remaining'], 1) }} kg
@empty

No crops registered yet. Register one.

@endforelse

Recently registered animals

View all
    @forelse ($recentAnimals as $a)
  • {{ $a->tag_id }}

    {{ $a->type }} · {{ $a->breed ?? '—' }}

    View
  • @empty
  • Nothing yet.
  • @endforelse

Recently registered crops

View all
    @forelse ($recentCrops as $c)
  • {{ $c->crop_type }}

    {{ $c->planting_area }}

    View
  • @empty
  • Nothing yet.
  • @endforelse