repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Models/Country.php | packages/Webkul/Core/src/Models/Country.php | <?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Core\Contracts\Country as CountryContract;
class Country extends Model implements CountryContract
{
public $timestamps = false;
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Models/CountryProxy.php | packages/Webkul/Core/src/Models/CountryProxy.php | <?php
namespace Webkul\Core\Models;
use Konekt\Concord\Proxies\ModelProxy;
class CountryProxy extends ModelProxy {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Models/CoreConfig.php | packages/Webkul/Core/src/Models/CoreConfig.php | <?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Core\Contracts\CoreConfig as CoreConfigContract;
class CoreConfig extends Model implements CoreConfigContract
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table = 'core_... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Repositories/CountryRepository.php | packages/Webkul/Core/src/Repositories/CountryRepository.php | <?php
namespace Webkul\Core\Repositories;
use Prettus\Repository\Traits\CacheableRepository;
use Webkul\Core\Eloquent\Repository;
class CountryRepository extends Repository
{
use CacheableRepository;
/**
* Specify Model class name
*
* @return mixed
*/
public function model()
{
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Repositories/CountryStateRepository.php | packages/Webkul/Core/src/Repositories/CountryStateRepository.php | <?php
namespace Webkul\Core\Repositories;
use Prettus\Repository\Traits\CacheableRepository;
use Webkul\Core\Eloquent\Repository;
class CountryStateRepository extends Repository
{
use CacheableRepository;
/**
* Specify Model class name
*
* @return mixed
*/
public function model()
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Repositories/CoreConfigRepository.php | packages/Webkul/Core/src/Repositories/CoreConfigRepository.php | <?php
namespace Webkul\Core\Repositories;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Webkul\Core\Contracts\CoreConfig;
use Webkul\Core\Eloquent\Repository;
class CoreConfigRepository exte... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Providers/CoreServiceProvider.php | packages/Webkul/Core/src/Providers/CoreServiceProvider.php | <?php
namespace Webkul\Core\Providers;
use Illuminate\Foundation\AliasLoader;
use Illuminate\Support\ServiceProvider;
use Webkul\Core\Acl;
use Webkul\Core\Console\Commands\Version;
use Webkul\Core\Core;
use Webkul\Core\Facades\Acl as AclFacade;
use Webkul\Core\Facades\Core as CoreFacade;
use Webkul\Core\Facades\Menu ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Providers/ModuleServiceProvider.php | packages/Webkul/Core/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\Core\Providers;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
protected $models = [
\Webkul\Core\Models\CoreConfig::class,
\Webkul\Core\Models\Country::class,
\Webkul\Core\Models\CountryState::class,
];
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Providers/BaseModuleServiceProvider.php | packages/Webkul/Core/src/Providers/BaseModuleServiceProvider.php | <?php
namespace Webkul\Core\Providers;
use Konekt\Concord\BaseModuleServiceProvider as ConcordBaseModuleServiceProvider;
class BaseModuleServiceProvider extends ConcordBaseModuleServiceProvider
{
/**
* {@inheritdoc}
*/
public function boot()
{
if ($this->areMigrationsEnabled()) {
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Eloquent/Repository.php | packages/Webkul/Core/src/Eloquent/Repository.php | <?php
namespace Webkul\Core\Eloquent;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Eloquent\BaseRepository;
use Prettus\Repository\Traits\CacheableRepository;
abstract class Repository extends BaseRepository implements CacheableInterface
{
use CacheableRepository;
/**
* F... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Core/src/Eloquent/TranslatableModel.php | packages/Webkul/Core/src/Eloquent/TranslatableModel.php | <?php
namespace Webkul\Core\Eloquent;
use Astrotomic\Translatable\Translatable;
use Illuminate\Database\Eloquent\Model;
class TranslatableModel extends Model
{
use Translatable;
/**
* @return string
*/
protected function locale()
{
if ($this->defaultLocale) {
return $th... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity.php | packages/Webkul/Automation/src/Helpers/Entity.php | <?php
namespace Webkul\Automation\Helpers;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\EmailTemplate\Repositories\EmailTemplateRepository;
class Entity
{
/**
* Create a new repository instance.
*
* @return void
*/
public function __construct(
protected Attrib... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Validator.php | packages/Webkul/Automation/src/Helpers/Validator.php | <?php
namespace Webkul\Automation\Helpers;
class Validator
{
/**
* Validate workflow for condition
*
* @param \Webkul\Automation\Contracts\Workflow $workflow
* @param mixed $entity
* @return bool
*/
public function validate($workflow, $entity)
{
if (! $workflow->c... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity/Lead.php | packages/Webkul/Automation/src/Helpers/Entity/Lead.php | <?php
namespace Webkul\Automation\Helpers\Entity;
use Illuminate\Support\Facades\Mail;
use Webkul\Activity\Repositories\ActivityRepository;
use Webkul\Admin\Notifications\Common;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Automation\Repositories\WebhookRepository;
use Webkul\Automation\Services... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity/Activity.php | packages/Webkul/Automation/src/Helpers/Entity/Activity.php | <?php
namespace Webkul\Automation\Helpers\Entity;
use Carbon\Carbon;
use Illuminate\Support\Facades\Mail;
use Webkul\Activity\Contracts\Activity as ContractsActivity;
use Webkul\Activity\Repositories\ActivityRepository;
use Webkul\Admin\Notifications\Common;
use Webkul\Attribute\Repositories\AttributeRepository;
use ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity/AbstractEntity.php | packages/Webkul/Automation/src/Helpers/Entity/AbstractEntity.php | <?php
namespace Webkul\Automation\Helpers\Entity;
use Carbon\Carbon;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Automation\Repositories\WebhookRepository;
use Webkul\Automation\Services\WebhookService;
abstract class AbstractEntity
{
/**
* Attribute repository instance.
*/
pr... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity/Quote.php | packages/Webkul/Automation/src/Helpers/Entity/Quote.php | <?php
namespace Webkul\Automation\Helpers\Entity;
use Illuminate\Support\Facades\Mail;
use Webkul\Admin\Notifications\Common;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Automation\Repositories\WebhookRepository;
use Webkul\Automation\Services\WebhookService;
use Webkul\Contact\Repositories\Pers... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Helpers/Entity/Person.php | packages/Webkul/Automation/src/Helpers/Entity/Person.php | <?php
namespace Webkul\Automation\Helpers\Entity;
use Illuminate\Support\Facades\Mail;
use Webkul\Admin\Notifications\Common;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Automation\Contracts\Workflow;
use Webkul\Automation\Repositories\WebhookRepository;
use Webkul\Automation\Services\WebhookSer... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Listeners/Entity.php | packages/Webkul/Automation/src/Listeners/Entity.php | <?php
namespace Webkul\Automation\Listeners;
use Webkul\Automation\Helpers\Validator;
use Webkul\Automation\Repositories\WorkflowRepository;
class Entity
{
/**
* Create a new repository instance.
*
* @return void
*/
public function __construct(
protected WorkflowRepository $workfl... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Services/WebhookService.php | packages/Webkul/Automation/src/Services/WebhookService.php | <?php
namespace Webkul\Automation\Services;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Psr7\Message;
use Webkul\Contact\Repositories\PersonRepository;
class WebhookService
{
/**
* The GuzzleHttp client instance.
*/
protected Client $client;
/**
* Crea... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Contracts/Webhook.php | packages/Webkul/Automation/src/Contracts/Webhook.php | <?php
namespace Webkul\Automation\Contracts;
interface Webhook {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Contracts/Workflow.php | packages/Webkul/Automation/src/Contracts/Workflow.php | <?php
namespace Webkul\Automation\Contracts;
interface Workflow {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Database/Migrations/2024_07_24_150821_create_webhooks_table.php | packages/Webkul/Automation/src/Database/Migrations/2024_07_24_150821_create_webhooks_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('webhooks', function (Blueprint $table) {
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Database/Migrations/2021_08_26_133538_create_workflows_table.php | packages/Webkul/Automation/src/Database/Migrations/2021_08_26_133538_create_workflows_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('workflows', function (B... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Config/workflows.php | packages/Webkul/Automation/src/Config/workflows.php | <?php
return [
'trigger_entities' => [
'leads' => [
'name' => 'Leads',
'class' => 'Webkul\Automation\Helpers\Entity\Lead',
'events' => [
[
'event' => 'lead.create.after',
'name' => 'Created',
],... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Models/Webhook.php | packages/Webkul/Automation/src/Models/Webhook.php | <?php
namespace Webkul\Automation\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Webkul\Automation\Contracts\Webhook as ContractsWebhook;
class Webhook extends Model implements ContractsWebhook
{
use HasFactory;
/**
* The attributes that are m... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Models/WorkflowProxy.php | packages/Webkul/Automation/src/Models/WorkflowProxy.php | <?php
namespace Webkul\Automation\Models;
use Konekt\Concord\Proxies\ModelProxy;
class WorkflowProxy extends ModelProxy {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Models/Workflow.php | packages/Webkul/Automation/src/Models/Workflow.php | <?php
namespace Webkul\Automation\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Automation\Contracts\Workflow as WorkflowContract;
class Workflow extends Model implements WorkflowContract
{
protected $casts = [
'conditions' => 'array',
'actions' => 'array',
];
protected $... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Models/WebhookProxy.php | packages/Webkul/Automation/src/Models/WebhookProxy.php | <?php
namespace Webkul\Automation\Models;
use Konekt\Concord\Proxies\ModelProxy;
class WebhookProxy extends ModelProxy {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Repositories/WebhookRepository.php | packages/Webkul/Automation/src/Repositories/WebhookRepository.php | <?php
namespace Webkul\Automation\Repositories;
use Webkul\Automation\Contracts\Webhook;
use Webkul\Core\Eloquent\Repository;
class WebhookRepository extends Repository
{
/**
* Specify Model class name.
*/
public function model(): string
{
return Webhook::class;
}
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Repositories/WorkflowRepository.php | packages/Webkul/Automation/src/Repositories/WorkflowRepository.php | <?php
namespace Webkul\Automation\Repositories;
use Webkul\Automation\Contracts\Workflow;
use Webkul\Core\Eloquent\Repository;
class WorkflowRepository extends Repository
{
/**
* Specify Model class name.
*/
public function model(): string
{
return Workflow::class;
}
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Providers/WorkflowServiceProvider.php | packages/Webkul/Automation/src/Providers/WorkflowServiceProvider.php | <?php
namespace Webkul\Automation\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;
class WorkflowServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
$this->loadMigrationsFrom(_... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Automation/src/Providers/ModuleServiceProvider.php | packages/Webkul/Automation/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\Automation\Providers;
use Webkul\Automation\Models\Webhook;
use Webkul\Automation\Models\Workflow;
use Webkul\Core\Providers\BaseModuleServiceProvider;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
/**
* Define the modals to map with this module.
*
* @var a... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Templates/on-boarding.php | packages/Webkul/Installer/src/Templates/on-boarding.php |
_ __ _
| | / / (_)
| |/ / _ __ __ _ _ _ _ _ __
| \| '__/ _` | | | | | '_ \
| |\ \ | | (_| | |_| | | | | |
\_| \_/_| \__,_|\__, |_|_| |_|
__/ |
|___/
</>
Welcome to the <info>Krayin</info> project! Krayin Commun... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Helpers/EnvironmentManager.php | packages/Webkul/Installer/src/Helpers/EnvironmentManager.php | <?php
namespace Webkul\Installer\Helpers;
use Exception;
class EnvironmentManager
{
/**
* Create a helper instance.
*
* @return void
*/
public function __construct(protected DatabaseManager $databaseManager) {}
/**
* Generate ENV File and Installation.
*
* @param [obje... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Helpers/ServerRequirements.php | packages/Webkul/Installer/src/Helpers/ServerRequirements.php | <?php
namespace Webkul\Installer\Helpers;
class ServerRequirements
{
/**
* Minimum PHP Version Supported (Override is in installer.php config file).
*
* @var string
*/
private $minPhpVersion = '8.1.0';
/**
* Check for the server requirements.
*/
public function validate(... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Helpers/DatabaseManager.php | packages/Webkul/Installer/src/Helpers/DatabaseManager.php | <?php
namespace Webkul\Installer\Helpers;
use Exception;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use Webkul\Installer\Database\Seeders\DatabaseSeeder as KrayinDatabaseSeeder;
class DatabaseManager
{
/**
* Check Database Connection.
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Http/Controllers/InstallerController.php | packages/Webkul/Installer/src/Http/Controllers/InstallerController.php | <?php
namespace Webkul\Installer\Http\Controllers;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\File;
use Webkul\Installer\Helpers\DatabaseManager;
use Webkul\Installer\Helpers\EnvironmentManager;... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Http/Controllers/ImageCacheController.php | packages/Webkul/Installer/src/Http/Controllers/ImageCacheController.php | <?php
namespace Webkul\Installer\Http\Controllers;
use Illuminate\Http\Response as IlluminateResponse;
use Illuminate\Support\Facades\Cache;
class ImageCacheController
{
/**
* Cache template
*
* @var string
*/
protected $template;
/**
* Logo
*
* @var string
*/
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Http/Controllers/Controller.php | packages/Webkul/Installer/src/Http/Controllers/Controller.php | <?php
namespace Webkul\Installer\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
class Controller extends BaseController
{
use DispatchesJobs, ValidatesRequests;
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Http/Middleware/CanInstall.php | packages/Webkul/Installer/src/Http/Middleware/CanInstall.php | <?php
namespace Webkul\Installer\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Str;
use Webkul\Installer\Helpers\DatabaseManager;
class CanInstall
{
/**
* Handles Requests if application is already installed then redirect to dashboard... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Http/Middleware/Locale.php | packages/Webkul/Installer/src/Http/Middleware/Locale.php | <?php
namespace Webkul\Installer\Http\Middleware;
use Closure;
class Locale
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($localeCode = $request->query('locale'))... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Listeners/Installer.php | packages/Webkul/Installer/src/Listeners/Installer.php | <?php
namespace Webkul\Installer\Listeners;
use GuzzleHttp\Client;
use Webkul\User\Repositories\UserRepository;
class Installer
{
/**
* Api endpoint
*
* @var string
*/
protected const API_ENDPOINT = 'https://updates.krayincrm.com/api/updates';
/**
* Create a new listener instanc... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Migrations/2024_08_21_153011_add_leads_stage_and_pipeline_attributes.php | packages/Webkul/Installer/src/Database/Migrations/2024_08_21_153011_add_leads_stage_and_pipeline_attributes.php | <?php
use Carbon\Carbon;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$now = Carbon::now();
DB::table('attributes')
->insert([
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093605_add_person_sales_owner_attribute_in_attributes_table.php | packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093605_add_person_sales_owner_attribute_in_attributes_table.php | <?php
use Carbon\Carbon;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$now = Carbon::now();
DB::table('attributes')
->insert([
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093603_add_organization_sales_owner_attribute_in_attributes_table.php | packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093603_add_organization_sales_owner_attribute_in_attributes_table.php | <?php
use Carbon\Carbon;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$now = Carbon::now();
DB::table('attributes')
->insert([
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Migrations/2024_06_24_174241_insert_warehouse_attributes_in_attributes_table.php | packages/Webkul/Installer/src/Database/Migrations/2024_06_24_174241_insert_warehouse_attributes_in_attributes_table.php | <?php
use Carbon\Carbon;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$now =... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093605_add_person_job_title_attribute_in_attributes_table.php | packages/Webkul/Installer/src/Database/Migrations/2024_07_31_093605_add_person_job_title_attribute_in_attributes_table.php | <?php
use Carbon\Carbon;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$now = Carbon::now();
DB::table('attributes')
->insert([
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders;
use Illuminate\Database\Seeder;
use Webkul\Installer\Database\Seeders\Attribute\DatabaseSeeder as AttributeSeeder;
use Webkul\Installer\Database\Seeders\Core\DatabaseSeeder as CoreSeeder;
use Webkul\Installer\Database\Seeders\EmailTemplate\DatabaseSeeder as EmailTemp... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Lead/PipelineSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Lead/PipelineSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Lead;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class PipelineSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Lead/SourceSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Lead/SourceSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Lead;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class SourceSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function ru... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Lead/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Lead/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Lead;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->call(Pipeli... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Lead/TypeSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Lead/TypeSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Lead;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class TypeSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run(... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/User/UserSeeder.php | packages/Webkul/Installer/src/Database/Seeders/User/UserSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
class UserSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public func... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/User/RoleSeeder.php | packages/Webkul/Installer/src/Database/Seeders/User/RoleSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class RoleSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/User/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/User/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\User;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->call(RoleSe... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/EmailTemplate/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/EmailTemplate/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\EmailTemplate;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->ca... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/EmailTemplate/EmailTemplateSeeder.php | packages/Webkul/Installer/src/Database/Seeders/EmailTemplate/EmailTemplateSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\EmailTemplate;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class EmailTemplateSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
pu... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Attribute/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Attribute/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Attribute;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->call(A... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Attribute/AttributeSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Attribute/AttributeSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Attribute;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class AttributeSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public fun... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Core/StatesSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Core/StatesSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Core;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class StatesSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Core/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Core/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Core;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->call(Countr... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Core/CountriesSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Core/CountriesSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Core;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class CountriesSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Workflow/WorkflowSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Workflow/WorkflowSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Workflow;
use Carbon\Carbon;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class WorkflowSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public funct... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Database/Seeders/Workflow/DatabaseSeeder.php | packages/Webkul/Installer/src/Database/Seeders/Workflow/DatabaseSeeder.php | <?php
namespace Webkul\Installer\Database\Seeders\Workflow;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @param array $parameters
* @return void
*/
public function run($parameters = [])
{
$this->call(Wo... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Console/Commands/Installer.php | packages/Webkul/Installer/src/Console/Commands/Installer.php | <?php
namespace Webkul\Installer\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\File;
use Webkul\Core\Providers\CoreServiceProvider;
use Webkul\Installer\Database\Seeders\DatabaseSeeder as KrayinDatabaseSeeder;
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/pt_BR/app.php | packages/Webkul/Installer/src/Resources/lang/pt_BR/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'Descrição',
'expected-close-date' => 'Data de Fechamento Esperada',
'lead-value' => 'Valor da Oportunidade',
'sales-owner' => '... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/tr/app.php | packages/Webkul/Installer/src/Resources/lang/tr/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'Açıklama',
'expected-close-date' => 'Beklenen Kapanış Tarihi',
'lead-value' => 'Potansiyel Değeri',
'sales-owner' => 'Satış Sah... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/en/app.php | packages/Webkul/Installer/src/Resources/lang/en/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'Description',
'expected-close-date' => 'Expected Close Date',
'lead-value' => 'Lead Value',
'sales-owner' => 'Sales Owner',
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/ar/app.php | packages/Webkul/Installer/src/Resources/lang/ar/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'الوصف',
'expected-close-date' => 'تاريخ الإغلاق المتوقع',
'lead-value' => 'قيمة العميل المحتمل',
'sales-owner' => 'مالك المبيعا... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/vi/app.php | packages/Webkul/Installer/src/Resources/lang/vi/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'Mô tả',
'expected-close-date' => 'Ngày dự kiến đóng',
'lead-value' => 'Giá trị cơ hội',
'sales-owner' => 'Chủ sở hữu bán hàng',... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/fa/app.php | packages/Webkul/Installer/src/Resources/lang/fa/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'توضیحات',
'expected-close-date' => 'تاریخ بسته شدن مورد انتظار',
'lead-value' => 'ارزش سرنخ',
'sales-owner' => 'مالک فروش',
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/lang/es/app.php | packages/Webkul/Installer/src/Resources/lang/es/app.php | <?php
return [
'seeders' => [
'attributes' => [
'leads' => [
'description' => 'Descripción',
'expected-close-date' => 'Fecha de Cierre Esperada',
'lead-value' => 'Valor del Prospecto',
'sales-owner' => 'Pro... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/button/index.blade.php | packages/Webkul/Installer/src/Resources/views/components/button/index.blade.php | <v-button {{ $attributes }}></v-button>
@pushOnce('scripts')
<script
type="text/x-template"
id="v-button-template"
>
<button
v-if="! loading"
:class="[buttonClass, '']"
>
@{{ title }}
</button>
<button
v-else
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/form/index.blade.php | packages/Webkul/Installer/src/Resources/views/components/form/index.blade.php | <!--
If a component has the `as` attribute, it indicates that it uses
the ajaxified form or some customized slot form.
-->
@if ($attributes->has('as'))
<v-form {{ $attributes }}>
{{ $slot }}
</v-form>
<!--
Otherwise, a traditional form will be provided with a minimal
set of configuratio... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/form/control-group/control.blade.php | packages/Webkul/Installer/src/Resources/views/components/form/control-group/control.blade.php | @props([
'type' => 'text',
'name' => '',
])
@switch($type)
@case('hidden')
@case('text')
@case('email')
@case('password')
@case('number')
<v-field
name="{{ $name }}"
v-slot="{ field }"
{{ $attributes->only(['value', ':value', 'v-model', 'rules', '... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/form/control-group/label.blade.php | packages/Webkul/Installer/src/Resources/views/components/form/control-group/label.blade.php | <label {{ $attributes->merge(['class' => 'block text-4 font-medium leading-6 text-gray-800']) }}>
{{ $slot }}
</label>
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/form/control-group/index.blade.php | packages/Webkul/Installer/src/Resources/views/components/form/control-group/index.blade.php | <div {{ $attributes->merge(['class' => 'mb-2.5']) }}>
{{ $slot }}
</div>
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/components/form/control-group/error.blade.php | packages/Webkul/Installer/src/Resources/views/components/form/control-group/error.blade.php | @props(['controlName' => ''])
@if (! empty($controlName))
<v-error-message
name="{{ $controlName }}"
{{ $attributes }}
v-slot="{ message }"
>
<p {{ $attributes->merge(['class' => 'mt-1 text-red-600 text-xs italic']) }}>
@{{ message }}
</p>
</v-error-messa... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Resources/views/installer/index.blade.php | packages/Webkul/Installer/src/Resources/views/installer/index.blade.php | <!DOCTYPE html>
<html
lang="{{ app()->getLocale() }}"
dir="{{ in_array(app()->getLocale(), ['ar', 'fa', 'he']) ? 'rtl' : 'ltr' }}"
>
<head>
<title>@lang('installer::app.installer.index.title')</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | true |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Providers/InstallerServiceProvider.php | packages/Webkul/Installer/src/Providers/InstallerServiceProvider.php | <?php
namespace Webkul\Installer\Providers;
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;
use Webkul\Installer\Console\Commands\Installer as InstallerCommand;
use Webkul\Installer\Http\Middleware\CanInstall;
use Webkul\Installer\Http\Middleware\Locale;
c... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Routes/web.php | packages/Webkul/Installer/src/Routes/web.php | <?php
use Illuminate\Session\Middleware\StartSession;
use Illuminate\Support\Facades\Route;
use Webkul\Installer\Http\Controllers\InstallerController;
Route::middleware(['web', 'installer_locale'])->group(function () {
Route::controller(InstallerController::class)->group(function () {
Route::get('install'... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Installer/src/Events/ComposerEvents.php | packages/Webkul/Installer/src/Events/ComposerEvents.php | <?php
namespace Webkul\Installer\Events;
use Symfony\Component\Console\Output\ConsoleOutput;
class ComposerEvents
{
/**
* Post create project.
*
* @return void
*/
public static function postCreateProject()
{
$output = new ConsoleOutput;
$output->writeln(file_get_conte... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Http/Requests/WebForm.php | packages/Webkul/WebForm/src/Http/Requests/WebForm.php | <?php
namespace Webkul\WebForm\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Attribute\Repositories\AttributeValueRepository;
use Webkul\Core\Contracts\Validations\Decimal;
use Webkul\WebForm\Rules\PhoneNumber;
class WebForm extends FormR... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Http/Controllers/Controller.php | packages/Webkul/WebForm/src/Http/Controllers/Controller.php | <?php
namespace Webkul\WebForm\Http\Controllers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
class Controller extends BaseController
{
use Autho... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Http/Controllers/WebFormController.php | packages/Webkul/WebForm/src/Http/Controllers/WebFormController.php | <?php
namespace Webkul\WebForm\Http\Controllers;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Event;
use Illuminate\View\View;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Contact\Repositories\PersonRepository;
use Webkul\Lead\Repositories\LeadRep... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Rules/PhoneNumber.php | packages/Webkul/WebForm/src/Rules/PhoneNumber.php | <?php
namespace Webkul\WebForm\Rules;
use Illuminate\Contracts\Validation\Rule;
class PhoneNumber implements Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Contracts/WebFormAttribute.php | packages/Webkul/WebForm/src/Contracts/WebFormAttribute.php | <?php
namespace Webkul\WebForm\Contracts;
interface WebFormAttribute {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Contracts/WebForm.php | packages/Webkul/WebForm/src/Contracts/WebForm.php | <?php
namespace Webkul\WebForm\Contracts;
interface WebForm {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Database/Migrations/2021_12_14_213049_create_web_forms_table.php | packages/Webkul/WebForm/src/Database/Migrations/2021_12_14_213049_create_web_forms_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('web_forms', function (B... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Database/Migrations/2021_12_14_214923_create_web_form_attributes_table.php | packages/Webkul/WebForm/src/Database/Migrations/2021_12_14_214923_create_web_form_attributes_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('web_form_attributes', f... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Config/menu.php | packages/Webkul/WebForm/src/Config/menu.php | <?php
return [
[
'key' => 'settings.other_settings.web_forms',
'name' => 'web_form::app.menu.title',
'info' => 'web_form::app.menu.title-info',
'route' => 'admin.settings.web_forms.index',
'sort' => 1,
'icon-class' => 'icon-settings-webf... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Config/acl.php | packages/Webkul/WebForm/src/Config/acl.php | <?php
return [
[
'key' => 'settings.other_settings.web_forms',
'name' => 'web_form::app.acl.title',
'route' => 'admin.settings.web_forms.index',
'sort' => 1,
], [
'key' => 'settings.other_settings.web_forms.view',
'name' => 'web_form::app.acl.view',
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/pt_BR/app.php | packages/Webkul/WebForm/src/Resources/lang/pt_BR/app.php | <?php
return [
'acl' => [
'title' => 'Formulários Web',
'view' => 'Visualizar',
'create' => 'Adicionar',
'edit' => 'Editar',
'delete' => 'Excluir',
],
'menu' => [
'title' => 'Formulários Web',
'title-info' => 'Adicione, edite ou exclua form... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/tr/app.php | packages/Webkul/WebForm/src/Resources/lang/tr/app.php | <?php
return [
'acl' => [
'title' => 'Web Formları',
'view' => 'Görüntüle',
'create' => 'Oluştur',
'edit' => 'Düzenle',
'delete' => 'Sil',
],
'menu' => [
'title' => 'Web Formları',
'title-info' => 'CRM’den web formlarını ekle, düzenle veya ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/en/app.php | packages/Webkul/WebForm/src/Resources/lang/en/app.php | <?php
return [
'acl' => [
'title' => 'Web Forms',
'view' => 'View',
'create' => 'Create',
'edit' => 'Edit',
'delete' => 'Delete',
],
'menu' => [
'title' => 'Web Forms',
'title-info' => 'Add, edit, or delete web forms from the CRM',
],
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/ar/app.php | packages/Webkul/WebForm/src/Resources/lang/ar/app.php | <?php
return [
'acl' => [
'title' => 'نماذج الويب',
'view' => 'عرض',
'create' => 'إنشاء',
'edit' => 'تعديل',
'delete' => 'حذف',
],
'menu' => [
'title' => 'نماذج الويب',
'title-info' => 'إضافة، تعديل أو حذف نماذج الويب من CRM',
],
'... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/vi/app.php | packages/Webkul/WebForm/src/Resources/lang/vi/app.php | <?php
return [
'acl' => [
'title' => 'Biểu mẫu Web',
'view' => 'Xem',
'create' => 'Tạo',
'edit' => 'Chỉnh sửa',
'delete' => 'Xóa',
],
'menu' => [
'title' => 'Biểu mẫu Web',
'title-info' => 'Thêm, chỉnh sửa hoặc xóa biểu mẫu web từ CRM',
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/fa/app.php | packages/Webkul/WebForm/src/Resources/lang/fa/app.php | <?php
return [
'acl' => [
'title' => 'فرمهای وب',
'view' => 'نمایش',
'create' => 'ایجاد',
'edit' => 'ویرایش',
'delete' => 'حذف',
],
'menu' => [
'title' => 'فرمهای وب',
'title-info' => 'افزودن، ویرایش یا حذف فرمهای وب از CRM',
],
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/WebForm/src/Resources/lang/es/app.php | packages/Webkul/WebForm/src/Resources/lang/es/app.php | <?php
return [
'acl' => [
'title' => 'Formularios Web',
'view' => 'Ver',
'create' => 'Crear',
'edit' => 'Editar',
'delete' => 'Eliminar',
],
'menu' => [
'title' => 'Formularios Web',
'title-info' => 'Agregar, editar o eliminar formularios w... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.