Krayin Forum

    Krayin

    • Register
    • Login
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. imjatinx
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    imjatinx

    @imjatinx

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    imjatinx Unfollow Follow

    Latest posts made by imjatinx

    • RE: mail not sent

      @Rohit_chauhan Could you share the failed network call.

      posted in General Discussion
      I
      imjatinx
    • RE: Create Lead Error

      Just install "sudo apt-get install php-intl" pkg according to your php version.

      posted in General Discussion
      I
      imjatinx
    • 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');
      }

      posted in General Discussion
      I
      imjatinx