@extends('layouts.app', ['title' => 'Animals', 'showNav' => true]) @section('content')

Animals

Add animal
{{-- Filters --}}
Clear
{{-- Table --}}
@forelse($animals as $animal) @empty @endforelse
Tag no Category Gender Created Updated Actions
{{ $animal->tag_no }} {{ \App\Support\AnimalCategory::label($animal->category) }} {{ ucfirst($animal->gender) }} {{ $animal->created_at->format('d M Y') }} {{ $animal->updated_at->format('d M Y') }}
@csrf @method('DELETE')
No animals found.
@if($animals->hasPages())
{{ $animals->links() }}
@endif @endsection