@include('apps._appDaysRange', compact('application', 'prices'))
@php
$user_prices = [
(float) number_format((float)($prices["{$application->device_type}_{$delay}_price_first_{$user_type}"]) + 1, 2, '.', ''),
(float) number_format((float)($prices["{$application->device_type}_{$delay}_price_second_{$user_type}"]) + 1, 2, '.', ''),
(float) number_format((float)($prices["{$application->device_type}_{$delay}_price_third_{$user_type}"]) + 1, 2, '.', ''),
(float) number_format((float)($prices["{$application->device_type}_{$delay}_price_fourth_{$user_type}"]) + 1, 2, '.', ''),
];
@endphp
{{ $user_prices[0] . ' ' . $currency }}
{{ $user_prices[1] . ' ' . $currency }}
{{ $user_prices[2] . ' ' . $currency }}
{{ $user_prices[3] . ' ' . $currency }}