@extends('layouts.app') @section('content-header')

{{__('breed.breed_details')}}

@endsection @section('content')

{{ isset($title) ? ucfirst($title) : 'Breed' }} {{__('commons.full_information')}}

{{ csrf_field() }} @if (App\Helpers\CommonHelper::isCapable('breeds.show')) @endif @if (App\Helpers\CommonHelper::isCapable('breeds.printDetails')) @endif @if (App\Helpers\CommonHelper::isCapable('breeds.create')) @endif @if (App\Helpers\CommonHelper::isCapable('breeds.edit')) @endif @if (App\Helpers\CommonHelper::isCapable('breeds.destroy')) @endif
{{__('commons.cattle')}} {{ optional($breed->cattle)->title }}
{{__('breed.breeding_date')}} {{ $breed->breeding_date }}
{{__('breed.breeding_type')}} {{ $breed->breeding_type }}
{{__('breed.breeding_status')}} {{ $breed->breeding_status }}
{{__('breed.expected_birth_date')}} {{ $breed->expected_birth_date }}
{{__('commons.cost')}} {{ $breed->cost }}
{{__('breed.aI_worker')}} {{ optional($breed->aiWorker)->name }}
{{__('commons.comments')}} {{ $breed->comments }}
{{__('commons.created_by')}} {{ optional($breed->creator)->name }}
{{__('commons.created_at')}} {{ $breed->created_at }}
{{__('commons.update_at')}} {{ $breed->updated_at }}
@endsection