@foreach(explode(',', $coupon->therapists) as $therapist_id)
@php
$item = \App\Therapist::find($therapist_id);
@endphp
@if($item)
{!! Str::limit((config('app.locale') == "ar")?strip_tags($item->main_specialty_ar):strip_tags($item->main_specialty_en),85) !!}
@if($location&&$location->countryName=='Egypt')
{{ $item->price30 }}
@lang('home.EGP')
@else
{{ $item->thirty_price_dollar }}
$
@endif
@php $avg_rating = \DB::table('reviews')->where('therapist_id', $item->id)->avg('rating'); @endphp
{{trans('home.view-detail')}}
@endif
@endforeach