@extends('layouts.app') @section('title', __('messages.semen_production')) @section('breadcrumb') {{ __('messages.production') }} / {{ __('messages.semen_production') }} @endsection @section('content')
{{ __('messages.track_semen_collection_records') }}
| {{ __('messages.cattle') }} | {{ __('messages.collected_by') }} | {{ __('messages.date') }} | {{ __('messages.quantity_ml') }} | {{ __('messages.quality') }} | {{ __('messages.notes') }} |
|---|---|---|---|---|---|
| {{ $record->cattle->tag_number ?? '—' }} - {{ $record->cattle->name ?? '—' }} | {{ $record->collectedBy->name ?? '—' }} | {{ $record->collection_date?->format('M d, Y') ?? '—' }} | {{ number_format($record->quantity_ml, 2) }} | {{ $record->quality ?: '—' }} | {{ \Illuminate\Support\Str::limit($record->notes, 40) ?: '—' }} |
| {{ __('messages.no_semen_production_records') }} | |||||