@php use App\Helpers\Helper; @endphp
{{ __("Pet Owner's Name") }}: {{ $ownerName }}
{{ __("Pet Name") }}: {{ $petName }}
{{ __("Animal Type") }}: {{ $animalType }}
{{ __("Breed") }}: {{ $breed }}
{{ __("Birth Date") }}: {{ $birthdate ?? '-' }}
{{ __("Age") }}: {{ $age??'-' }}
{{ __("Gender") }}: {{ $gender ?? '-' }}
{{ __("Weight") }}: {{ $weight ? $weight.' kg.':'-' }}
{{ __("ID Chip / Other") }}: {{ $chipId ?? '-' }}
{{ __("Pedigree Certification Number") }}: {{ $pedigreeCertNumber }}
{{ __("General Description") }}: {{ $generalDescription }}
{{ __("Personality Description") }}: {{ $personalityDescription }}
{{ $healthHistory ?? '-' }}
{{ __("There are no vaccinations registered for this pet.") }}
@else{{ __("Vaccine Name") }} | {{ __("Dose Number") }} | {{ __("Vaccination Date") }} |
---|---|---|
{{ $vaccine->vaccine->name }} | {{ $vaccine->immunization }} | {{ $vaccine->date ? Helper::getDateFormatByLang($vaccine->date, $lang):'-' }} |
{{ __("There are no medical diagnoses registered for this pet.") }}
@else{{ __("Diagnosis") }} | {{ __("Instructions") }} | {{ __("Treatment") }} | {{ __("Suggested Tests") }} | {{ __("Date of Diagnosis") }} |
---|---|---|---|---|
{{ strip_tags(str_replace("", " ", $diagnosis['description'] ?? '-')) }} | {{ strip_tags(str_replace("", " ", $diagnosis['indications'] ?? '-')) }} | {{ strip_tags(str_replace("", " ", $diagnosis['treatment'] ?? '-')) }} | {{ strip_tags(str_replace("", " ", $diagnosis['exams'] ?? '-')) }} | {{ strip_tags(str_replace("", " ", $diagnosis['created_at']->format(Helper::getFormatDateByLang($lang)) ?? '-')) }} |