@foreach ($data['data']['service_prices'] as $servicePrice)
@php
$icon = 'chat-circle';
$text = 'Text Chat';
if ($servicePrice['service_type'] == 'chat' || $servicePrice['service_type'] == '24_chat') {
$icon = 'chat-circle';
$text = $servicePrice['service_type'] == 'chat' ? 'Text Chat' : '24H Text Chat';
} elseif ($servicePrice['service_type'] == 'audio' || $servicePrice['service_type'] == '24_audio') {
$icon = 'phone';
$text = $servicePrice['service_type'] == 'audio' ? 'Audio Call' : '24H Audio Call';
} elseif ($servicePrice['service_type'] == 'video' || $servicePrice['service_type'] == '24_video') {
$icon = 'video-camera';
$text = $servicePrice['service_type'] == 'video' ? 'Video Call' : '24H Video Call';
}
@endphp
@endforeach