| {{__('commons.cattle_id')}} |
{{ $cattle->title }} |
| {{__('commons.status')}} |
{{ $cattle->status }} |
| {{__('commons.cattle_type')}} |
{{ optional($cattle->cattleType)->title }} |
| {{__('cattle.father_insemination')}} |
{{ $cattle->father_insemination }} |
| {{__('commons.parent')}} |
{{ optional($cattle->Cattle)->title }} |
| {{__('cattle.purchase_source')}} |
{{ $cattle->purchase_source }} |
| {{__('cattle.purchase_amount')}} |
{{ $cattle->purchase_amount }} |
| {{__('cattle.purchase_date')}} |
{{ $cattle->purchase_date }} |
| {{__('cattle.farm_entry_date')}} |
{{ $cattle->farm_entry_date }} |
| {{__('cattle.body_weights')}} |
| {{__('commons.date')}} |
{{__('commons.weight')}} |
@foreach($cattleWeights as $cattleWeight)
| {{ $cattleWeight->date }} |
{{ $cattleWeight->weight }} |
@endforeach
|
| {{__('cattle.body_costs')}} |
| {{__('commons.date')}} |
{{__('commons.cost')}} |
@foreach($cattleCosts as $cattleCost)
| {{ date('M, Y', strtotime($cattleCost->date)) }} |
{{ $cattleCost->cost }} |
@endforeach
|