@Rohit_chauhan Could you share the failed network call.
I
Latest posts made by imjatinx
-
RE: mail not sent
-
RE: Create Lead Error
Just install "sudo apt-get install php-intl" pkg according to your php version.
-
RE: Getting error when. assign sales owner try to open that particular lead
GO TO : packages/Webkul/Admin/src/Http/Controllers/Lead/LeadController.php
In view function
Remove this :
if (
$userIds = bouncer()->getAuthorizedUserIds()
&& ! in_array($lead->user_id, $userIds)
) {
return redirect()->route('admin.leads.index');
}with:
$userIds = bouncer()->getAuthorizedUserIds();
if ($userIds && ! in_array($lead->user_id, $userIds)) {
return redirect()->route('admin.leads.index');
}