@extends('layouts.site') @section('content')
@foreach(explode(',', $coupon->therapists) as $therapist_id) @php $item = \App\Therapist::find($therapist_id); @endphp @if($item)
{{$item->title}}

{{ config('app.locale') == "en" ? $item->name_e : $item->name_a }}

{!! 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 Egp @php $avg_rating = \DB::table('reviews')->where('therapist_id', $item->id)->avg('rating'); @endphp
{{trans('home.view-detail')}}
@endif @endforeach
@endsection @section('scriptSection') @endsection