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

{{__('medicine.medicine_details')}}

@endsection @section('content')

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

{{ csrf_field() }} @if (App\Helpers\CommonHelper::isCapable('medicines.index')) @endif @if (App\Helpers\CommonHelper::isCapable('medicines.printDetails')) @endif @if (App\Helpers\CommonHelper::isCapable('medicines.create')) @endif @if (App\Helpers\CommonHelper::isCapable('medicines.edit')) @endif @if (App\Helpers\CommonHelper::isCapable('medicines.destroy')) @endif
{{__('commons.cattle')}} {{ optional($medicine->cattle)->title }}
{{__('medicine.doctor')}} {{ optional($medicine->doctor)->name }}
{{__('commons.identify_date')}} {{ $medicine->identify_date }}
{{__('commons.start_date')}} {{ $medicine->start_date }}
{{__('commons.end_date')}} {{ $medicine->end_date }}
{{__('commons.next_follow_up_date')}} {{ $medicine->next_follow_up_date }}
{{__('medicine.special_dose')}} {{ $medicine->special_dose }}
{{__('medicine.regular_dose')}} {{ $medicine->regular_dose }}
{{__('commons.comments')}} {{ $medicine->comments }}
{{__('commons.created_by')}} {{ optional($medicine->creator)->name }}
{{__('commons.created_at')}} {{ $medicine->created_at }}
{{__('commons.update_at')}} {{ $medicine->updated_at }}
@endsection