{{ $defaultModel->tooltipHowToCalc() }}
@php
$key = $defaultModel->engine()->slug().'.'.$defaultModel->slug();
if (data_get($costs, $key . '.isUnlimited')) {
$cost = '∞';
} else{
if (is_numeric(data_get($costs, $key.'.credit', 0.00))) {
$cost = '$' . formatSmallNumber(data_get($costs, $key.'.credit', 0.00));
}
}
@endphp
{{ trans('Estimated cost (USD): '). $cost }}