- Title
- {{ $record->title }}
- Record Type
- {{ ucfirst(str_replace('_', ' ', $record->record_type)) }}
- Record Date
- {{ $record->record_date->format('M d, Y') }}
@if($record->location)
- Location
- {{ $record->location }}
@endif
@if($record->quantity)
- Quantity
- {{ $record->quantity }} {{ $record->unit ?? '' }}
@endif
@if($record->waste_category)
- Waste Category
- {{ ucfirst($record->waste_category) }}
@endif
@if($record->disposal_method)
- Disposal Method
- {{ ucfirst($record->disposal_method) }}
@endif
@if($record->description)
- Description
- {{ $record->description }}
@endif