@extends('layouts.app') @section('title', 'Waste Management Record: ' . $wasteManagementRecord->reference_number) @section('content')
Back

{{ $wasteManagementRecord->reference_number }}

{{ $wasteManagementRecord->waste_type }}

Edit

Waste Information

Waste Type
{{ $wasteManagementRecord->waste_type }}
Category
{{ $wasteManagementRecord->category ?? 'N/A' }}
Quantity
{{ $wasteManagementRecord->quantity ?? 'N/A' }} {{ $wasteManagementRecord->unit ?? '' }}
Segregation Status
{{ ucfirst(str_replace('_', ' ', $wasteManagementRecord->segregation_status)) }}
@if($wasteManagementRecord->storage_location)
Storage Location
{{ $wasteManagementRecord->storage_location }}
@endif @if($wasteManagementRecord->department)
Department
{{ $wasteManagementRecord->department->name }}
@endif @if($wasteManagementRecord->collection_date)
Collection Date
{{ $wasteManagementRecord->collection_date->format('M d, Y') }}
@endif @if($wasteManagementRecord->disposal_date)
Disposal Date
{{ $wasteManagementRecord->disposal_date->format('M d, Y') }}
@endif @if($wasteManagementRecord->disposal_method)
Disposal Method
{{ ucfirst($wasteManagementRecord->disposal_method) }}
@endif @if($wasteManagementRecord->disposalContractor)
Disposal Contractor
{{ $wasteManagementRecord->disposalContractor->name }}
@endif

Quick Info

Reference Number
{{ $wasteManagementRecord->reference_number }}
Recorded By
{{ $wasteManagementRecord->recordedBy->name ?? 'N/A' }}
Created
{{ $wasteManagementRecord->created_at->format('M d, Y') }}
@if($wasteManagementRecord->notes)

Notes

{{ $wasteManagementRecord->notes }}

@endif
@endsection