@extends('layouts.site') @section('content')
@if(!empty($userData->visitor->image)) @else @endif

{{$data->user->name}}

@if ((auth()->check()&&auth()->user()->type == 'visitors')||!auth()->check()) @endif
@if (session()->has('success'))
{!! session()->get('success') !!}
@endif

{{trans('home.sessions')}}

@if(count($previousSessions)) @include('therapists.include.sessions_blocks',['sessionsBlocks'=>$previousSessions]) @else
@lang('home.There are no sessions')
@endif
@if(count($todaySessions)) @include('therapists.include.sessions_blocks',['sessionsBlocks'=>$todaySessions]) @else
@lang('home.There are no sessions')
@endif
@if(count($nextSessions)) @include('therapists.include.sessions_blocks',['sessionsBlocks'=>$nextSessions]) @else
@lang('home.There are no sessions')
@endif
@endsection @section('scriptSection') @endsection