@extends('layouts.site') @section('content')

@lang('home.randomText')

@lang('home.therapists-list')
@foreach($therapists as $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')}}
@endforeach
@endsection @section('scriptSection') @endsection