@extends('layouts.app')
@section('content')
Livestock Management System
@if($livestocks->count())
{{ $livestocks->count() }} records found
@else
No records found
@endif
ID |
Veterinarian |
Name |
Date of Birth |
Livestock |
Tag Number |
Picture |
Actions |
@foreach($livestocks as $livestock)
{{ $livestock->id }} |
{{-- {{ $livestock->owner }} | --}}
{{ $livestock->veterinarian }} |
{{ $livestock->name }} |
{{ $livestock->date_of_birth }} |
{{ $livestock->species }} |
{{ $livestock->tag }} |
|
|
@endforeach
@endsection