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

Livestock Management System

@if($livestocks->count())

{{ $livestocks->count() }} records found

@else

No records found

@endif
Add Livestock Deleted Livestock
@foreach($livestocks as $livestock) {{-- --}} @endforeach
ID Veterinarian Name Date of Birth Livestock Tag Number Picture Actions
{{ $livestock->id }}{{ $livestock->owner }}{{ $livestock->veterinarian }} {{ $livestock->name }} {{ $livestock->date_of_birth }} {{ $livestock->species }} {{ $livestock->tag }} {{ $livestock->picture }}
@csrf @method('DELETE')
{{ $livestocks->appends(request()->query())->links('vendor.pagination.custom') }}
@endsection