{{ substr($service->user_phone, 0, 3) }}{!! str_repeat('×',
strlen($service->user_phone) -3) !!}
{{ $service->address->city . ', ' . $service->address->state }}
{{ $service->category->name }}
@php
$email = explode("@", $service->user_email);
$email_mask = substr($email[0], 0, 3) . str_repeat('×',
strlen($email[0]) -3);
$domain = explode(".", $email[1]);
$domain_mask = str_repeat('×', strlen($domain[0]));
array_shift($domain);
$domain1 = implode(".", $domain);
$email_mask = $email_mask . '@' . $domain_mask . '.' . $domain1;
@endphp
{!! $email_mask !!}