Skip to content

Commit

Permalink
feat(lead): Add mobile validation check to lead list
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Oct 3, 2023
1 parent 25de0ea commit 305495b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions resources/views/lead/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ class="link-secondary text-decoration-none">
<i class="las la-mobile fs-4"></i>
</a>

@if($lead->mobile_verified == 1)
<i class="las la-check-circle text-success"></i>
@else
<i class="las la-times-circle text-danger"></i>
@endif

<a href="sip:{{ $lead->mobile }}" title="{{ \App\Helpers\PhoneHelper::format($lead->mobile) }}"
target="_blank" class="link-secondary text-decoration-none">
<i class="las la-headset fs-4"></i>
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

const APP_VERSION = '3.9.1';
const APP_VERSION = '3.9.2';

0 comments on commit 305495b

Please sign in to comment.