@php
$calcType = $calc->calculator_type ?? 'deck';
$typeColors = [
'deck' => '#4CAF50',
'cabinet' => '#2196F3',
'balustrade' => '#FF9800',
'area' => '#9C27B0',
'pricing' => '#F44336',
'joist' => '#00BCD4',
];
$iconColor = $typeColors[$calcType] ?? '#4CAF50';
@endphp
@switch($calcType)
@case('cabinet')
@break
@case('balustrade')
@break
@default
@endswitch
{{ ucfirst(str_replace('_', ' ', $calcType)) }}
@if(config('features.pdf_export'))
PDF
@endif
{{ $calc->created_at->diffForHumans() }}