@extends('layouts.app') @section('title', 'Vaccinations') @section('breadcrumb') @endsection @section('content')

Vaccinations

Ajouter
@forelse($vaccinations as $vaccination) @empty @endforelse
Lot Vaccin Date Prochain rappel Dose Cout Actions
{{ $vaccination->lot->code ?? '-' }} {{ $vaccination->vaccine->name ?? '-' }} {{ \Carbon\Carbon::parse($vaccination->date)->format('d/m/Y') }} @if($vaccination->next_due_date) @if(\Carbon\Carbon::parse($vaccination->next_due_date)->isPast()) {{ \Carbon\Carbon::parse($vaccination->next_due_date)->format('d/m/Y') }} @else {{ \Carbon\Carbon::parse($vaccination->next_due_date)->format('d/m/Y') }} @endif @else - @endif {{ $vaccination->dose ?? '-' }} {{ $vaccination->cost ? number_format($vaccination->cost, 2) . ' FCFA' : '-' }}
@csrf @method('DELETE')
Aucun enregistrement.
@endsection