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

Medication

Add medication
@forelse($medications as $medication) @empty @endforelse
Date Type Category Description Cost Actions
{{ $medication->medication_date->format('d M Y') }} {{ \App\Support\MedicationType::labels()[$medication->type] }} {{ \App\Support\AnimalCategory::label($medication->category) }} {{ \Illuminate\Support\Str::limit($medication->description, 40) }} {{ number_format($medication->total_cost, 2) }}
No medication records found.
@if($medications->hasPages())
{{ $medications->links() }}
@endif @endsection