@extends('layouts.master') @section('title', 'Vaccine Batch Details') @section('content')
Back To Inventory
Batch Information
Vaccine {{ $batch->vaccine_name }}
Batch Number {{ $batch->batch_no }}
Expiry Month {{ \Carbon\Carbon::parse($batch->expiry_date)->format('m/Y') }}
Quantity Received {{ number_format($batch->quantity_received) }}
Quantity Available {{ number_format($batch->quantity_available) }}
Quantity Consumed {{ number_format($consumed) }}
Source {{ $batch->source_name ?? 'N/A' }}
Stocked By {{ $batch->stocked_by }}
Stocked At {{ $batch->stocked_at }}
Status @php $status = 'Active'; $badgeClass = 'workflow-badge-green'; if ( $batch->quantity_available <= 0 ) { $status = 'Depleted'; $badgeClass = 'workflow-badge-red'; } if ( \Carbon\Carbon::parse( $batch->expiry_date )->isPast() ) { $status = 'Expired'; $badgeClass = 'workflow-badge-red'; } @endphp {{ $status }}
@endsection