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

LIVESTOCK RECORDS

@if($livestocks->isEmpty())
No livestock records found.
@else @foreach($livestocks as $livestock)
@if($livestock->picture) Livestock Picture @else
PICTURE NOT AVAILABLE
@endif
@endforeach @endif

Medical Records

@foreach ($medicals as $medical) @endforeach
Date Treatment Notes Action
{{ $medical->date }} {{ $medical->treatment }} {{ $medical->note }} Edit
@csrf @method('DELETE')

Vaccination Records

@foreach ($vaccinations as $vaccination) @endforeach
Date Vaccination Booster Action
{{ $vaccination->date }} {{ $vaccination->vaccination }} {{ $vaccination->booster }}
@csrf @method('PUT')
@csrf @method('DELETE')
@endsection