added anchor tag to whole div

This commit is contained in:
Ritikesh yadav
2024-05-15 15:53:53 +05:30
parent 1087478a26
commit 2e60a608cf
3 changed files with 6 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ function imagePath($path = null)
$finalPath = "https://staging.jerichoalternatives.in/";
}
if (env('APP_ENV') == 'local') {
$finalPath = "http://localhost/my-freeu/";
$finalPath = "http://localhost/jericho_28_march/";
}
return $finalPath . $path;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@@ -1,6 +1,6 @@
@foreach($users as $user)
<div class="d-flex flex-stack py-4">
<a href="javascript:void(0)" class="fs-5 fw-bold text-gray-900 text-hover-primary mb-2" onclick="getUser({{$user?->id}})"><div class="d-flex flex-stack py-4">
<div class="d-flex align-items-center">
<div class="symbol symbol-45px symbol-circle">
@if($user?->profile_image)
@@ -17,9 +17,11 @@
@endif
</div>
<div class="ms-5">
<a href="javascript:void(0)" class="fs-5 fw-bold text-gray-900 text-hover-primary mb-2" onclick="getUser({{$user?->id}})"><span class="spanName" id="user_{{$user?->id}}" data-chatid="{{$user?->id}}">{{$user?->name}}</span></a>
{{-- <a href="javascript:void(0)" class="fs-5 fw-bold text-gray-900 text-hover-primary mb-2" onclick="getUser({{$user?->id}})"> --}}
<span class="spanName" id="user_{{$user?->id}}" data-chatid="{{$user?->id}}">{{$user?->name}}</span>
{{-- </a> --}}
<div class="fw-semibold text-muted">{{$user?->email}}</div>
</div>
</div>
</div>
</div></a>
@endforeach