- 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