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/DataTransfer/src/Resources/lang/ar/ar.php | packages/Webkul/DataTransfer/src/Resources/lang/ar/ar.php | <?php
return [
'importers' => [
'persons' => [
'title' => 'الأشخاص',
'validation' => [
'errors' => [
'duplicate-email' => 'البريد الإلكتروني: \'%s\' تم العثور عليه أكثر من مرة في ملف الاستيراد.',
'duplicate-phone' => 'الهاتف: ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Resources/lang/fa/app.php | packages/Webkul/DataTransfer/src/Resources/lang/fa/app.php | <?php
return [
'importers' => [
'persons' => [
'title' => 'افراد',
'validation' => [
'errors' => [
'duplicate-email' => 'ایمیل: \'%s\' بیش از یک بار در فایل واردات یافت شد.',
'duplicate-phone' => 'تلفن: \'%s\' بیش از یک بار در... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Resources/lang/es/app.php | packages/Webkul/DataTransfer/src/Resources/lang/es/app.php | <?php
return [
'importers' => [
'persons' => [
'title' => 'Personas',
'validation' => [
'errors' => [
'duplicate-email' => 'Correo electrónico: \'%s\' se encontró más de una vez en el archivo de importación.',
'duplicate-phone... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Models/ImportProxy.php | packages/Webkul/DataTransfer/src/Models/ImportProxy.php | <?php
namespace Webkul\DataTransfer\Models;
use Konekt\Concord\Proxies\ModelProxy;
class ImportProxy 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/DataTransfer/src/Models/ImportBatchProxy.php | packages/Webkul/DataTransfer/src/Models/ImportBatchProxy.php | <?php
namespace Webkul\DataTransfer\Models;
use Konekt\Concord\Proxies\ModelProxy;
class ImportBatchProxy 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/DataTransfer/src/Models/ImportBatch.php | packages/Webkul/DataTransfer/src/Models/ImportBatch.php | <?php
namespace Webkul\DataTransfer\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\DataTransfer\Contracts\ImportBatch as ImportBatchContract;
class ImportBatch extends Model implements ImportBatchContract
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
p... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Models/Import.php | packages/Webkul/DataTransfer/src/Models/Import.php | <?php
namespace Webkul\DataTransfer\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Webkul\DataTransfer\Contracts\Import as ImportContract;
class Import extends Model implements ImportContract
{
/**
* The attributes that are mass assignable.
*
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Repositories/ImportRepository.php | packages/Webkul/DataTransfer/src/Repositories/ImportRepository.php | <?php
namespace Webkul\DataTransfer\Repositories;
use Webkul\Core\Eloquent\Repository;
use Webkul\DataTransfer\Contracts\Import;
class ImportRepository extends Repository
{
/**
* Specify model class name.
*/
public function model(): string
{
return Import::class;
}
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Repositories/ImportBatchRepository.php | packages/Webkul/DataTransfer/src/Repositories/ImportBatchRepository.php | <?php
namespace Webkul\DataTransfer\Repositories;
use Webkul\Core\Eloquent\Repository;
use Webkul\DataTransfer\Contracts\ImportBatch;
class ImportBatchRepository extends Repository
{
/**
* Specify model class name.
*/
public function model(): string
{
return ImportBatch::class;
}
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Providers/DataTransferServiceProvider.php | packages/Webkul/DataTransfer/src/Providers/DataTransferServiceProvider.php | <?php
namespace Webkul\DataTransfer\Providers;
use Illuminate\Support\ServiceProvider;
class DataTransferServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot(): void
{
$this->loadTranslationsFrom(__DIR__.'/../Resources/lang', 'data_... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/DataTransfer/src/Providers/ModuleServiceProvider.php | packages/Webkul/DataTransfer/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\DataTransfer\Providers;
use Webkul\Core\Providers\BaseModuleServiceProvider;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
/**
* Define models to map with repository interfaces.
*
* @var array
*/
protected $models = [
\Webkul\DataTransfer\M... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Contracts/Location.php | packages/Webkul/Warehouse/src/Contracts/Location.php | <?php
namespace Webkul\Warehouse\Contracts;
interface Location {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Contracts/Warehouse.php | packages/Webkul/Warehouse/src/Contracts/Warehouse.php | <?php
namespace Webkul\Warehouse\Contracts;
interface Warehouse {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Database/Migrations/2024_08_10_100340_create_warehouse_tags_table.php | packages/Webkul/Warehouse/src/Database/Migrations/2024_08_10_100340_create_warehouse_tags_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('warehouse_tags', functi... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Database/Migrations/2024_06_21_160735_create_warehouse_locations_table.php | packages/Webkul/Warehouse/src/Database/Migrations/2024_06_21_160735_create_warehouse_locations_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('warehouse_locations', function (Blueprint $t... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Database/Migrations/2024_08_10_100329_create_warehouse_activities_table.php | packages/Webkul/Warehouse/src/Database/Migrations/2024_08_10_100329_create_warehouse_activities_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('warehouse_activities', ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Database/Migrations/2024_06_21_160707_create_warehouses_table.php | packages/Webkul/Warehouse/src/Database/Migrations/2024_06_21_160707_create_warehouses_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('warehouses', 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/Warehouse/src/Models/LocationProxy.php | packages/Webkul/Warehouse/src/Models/LocationProxy.php | <?php
namespace Webkul\Warehouse\Models;
use Konekt\Concord\Proxies\ModelProxy;
class LocationProxy 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/Warehouse/src/Models/Location.php | packages/Webkul/Warehouse/src/Models/Location.php | <?php
namespace Webkul\Warehouse\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Warehouse\Contracts\Location as LocationContract;
class Location extends Model implements LocationContract
{
/**
* The table associated with the model.
*/
protected $table = 'warehouse_locations';
/**
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Models/Warehouse.php | packages/Webkul/Warehouse/src/Models/Warehouse.php | <?php
namespace Webkul\Warehouse\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Activity\Models\ActivityProxy;
use Webkul\Activity\Traits\LogsActivity;
use Webkul\Attribute\Traits\CustomAttribute;
use Webkul\Tag\Models\TagProxy;
use Webkul\Warehouse\Contracts\Warehouse as WarehouseContract;
class Warehou... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Models/WarehouseProxy.php | packages/Webkul/Warehouse/src/Models/WarehouseProxy.php | <?php
namespace Webkul\Warehouse\Models;
use Konekt\Concord\Proxies\ModelProxy;
class WarehouseProxy 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/Warehouse/src/Repositories/LocationRepository.php | packages/Webkul/Warehouse/src/Repositories/LocationRepository.php | <?php
namespace Webkul\Warehouse\Repositories;
use Webkul\Core\Eloquent\Repository;
class LocationRepository extends Repository
{
/**
* Searchable fields
*/
protected $fieldSearchable = [
'name',
'warehouse_id',
];
/**
* Specify Model class name
*
* @return m... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Repositories/WarehouseRepository.php | packages/Webkul/Warehouse/src/Repositories/WarehouseRepository.php | <?php
namespace Webkul\Warehouse\Repositories;
use Illuminate\Container\Container;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Attribute\Repositories\AttributeValueRepository;
use Webkul\Core\Eloquent\Repository;
use Webkul\Warehouse\Contracts\Warehouse;
class WarehouseRepository extends Reposi... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Providers/ModuleServiceProvider.php | packages/Webkul/Warehouse/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\Warehouse\Providers;
use Webkul\Core\Providers\BaseModuleServiceProvider;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
protected $models = [
\Webkul\Warehouse\Models\Location::class,
\Webkul\Warehouse\Models\Warehouse::class,
];
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Warehouse/src/Providers/WarehouseServiceProvider.php | packages/Webkul/Warehouse/src/Providers/WarehouseServiceProvider.php | <?php
namespace Webkul\Warehouse\Providers;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;
class WarehouseServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot(Router $router)
{
$this->loadMigration... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Contracts/Quote.php | packages/Webkul/Quote/src/Contracts/Quote.php | <?php
namespace Webkul\Quote\Contracts;
interface Quote {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Contracts/QuoteItem.php | packages/Webkul/Quote/src/Contracts/QuoteItem.php | <?php
namespace Webkul\Quote\Contracts;
interface QuoteItem {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Database/Migrations/2021_07_01_231317_create_quote_items_table.php | packages/Webkul/Quote/src/Database/Migrations/2021_07_01_231317_create_quote_items_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('quote_items', function ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Database/Migrations/2021_07_01_230345_create_quotes_table.php | packages/Webkul/Quote/src/Database/Migrations/2021_07_01_230345_create_quotes_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('quotes', function (Blue... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Models/QuoteProxy.php | packages/Webkul/Quote/src/Models/QuoteProxy.php | <?php
namespace Webkul\Quote\Models;
use Konekt\Concord\Proxies\ModelProxy;
class QuoteProxy 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/Quote/src/Models/QuoteItemProxy.php | packages/Webkul/Quote/src/Models/QuoteItemProxy.php | <?php
namespace Webkul\Quote\Models;
use Konekt\Concord\Proxies\ModelProxy;
class QuoteItemProxy 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/Quote/src/Models/Quote.php | packages/Webkul/Quote/src/Models/Quote.php | <?php
namespace Webkul\Quote\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Attribute\Traits\CustomAttribute;
use Webkul\Contact\Models\PersonProxy;
use Webkul\Lead\Models\LeadProxy;
use Webkul\Quote\Contracts\Quote as QuoteContract;
use Webkul\User\Models\UserProxy;
class Quote extends Model implements ... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Models/QuoteItem.php | packages/Webkul/Quote/src/Models/QuoteItem.php | <?php
namespace Webkul\Quote\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Quote\Contracts\QuoteItem as QuoteItemContract;
class QuoteItem extends Model implements QuoteItemContract
{
protected $table = 'quote_items';
/**
* The attributes that are mass assignable.
*
* @var array
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Repositories/QuoteRepository.php | packages/Webkul/Quote/src/Repositories/QuoteRepository.php | <?php
namespace Webkul\Quote\Repositories;
use Illuminate\Container\Container;
use Illuminate\Support\Str;
use Webkul\Attribute\Repositories\AttributeRepository;
use Webkul\Attribute\Repositories\AttributeValueRepository;
use Webkul\Core\Eloquent\Repository;
use Webkul\Quote\Contracts\Quote;
class QuoteRepository ex... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Quote/src/Repositories/QuoteItemRepository.php | packages/Webkul/Quote/src/Repositories/QuoteItemRepository.php | <?php
namespace Webkul\Quote\Repositories;
use Illuminate\Container\Container;
use Webkul\Core\Eloquent\Repository;
use Webkul\Product\Repositories\ProductRepository;
class QuoteItemRepository extends Repository
{
/**
* Create a new repository instance.
*
* @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/Quote/src/Providers/QuoteServiceProvider.php | packages/Webkul/Quote/src/Providers/QuoteServiceProvider.php | <?php
namespace Webkul\Quote\Providers;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;
class QuoteServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot(Router $router)
{
$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/Quote/src/Providers/ModuleServiceProvider.php | packages/Webkul/Quote/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\Quote\Providers;
use Webkul\Core\Providers\BaseModuleServiceProvider;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
protected $models = [
\Webkul\Quote\Models\Quote::class,
\Webkul\Quote\Models\QuoteItem::class,
];
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Traits/CustomAttribute.php | packages/Webkul/Attribute/src/Traits/CustomAttribute.php | <?php
namespace Webkul\Attribute\Traits;
use Webkul\Attribute\Models\AttributeValueProxy;
use Webkul\Attribute\Repositories\AttributeRepository;
trait CustomAttribute
{
/**
* @var array
*/
public static $attributeTypeFields = [
'text' => 'text_value',
'textarea' => 'text_v... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Contracts/Attribute.php | packages/Webkul/Attribute/src/Contracts/Attribute.php | <?php
namespace Webkul\Attribute\Contracts;
interface Attribute {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Contracts/AttributeValue.php | packages/Webkul/Attribute/src/Contracts/AttributeValue.php | <?php
namespace Webkul\Attribute\Contracts;
interface AttributeValue {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Contracts/AttributeOption.php | packages/Webkul/Attribute/src/Contracts/AttributeOption.php | <?php
namespace Webkul\Attribute\Contracts;
interface AttributeOption {}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Database/Migrations/2021_04_02_080709_create_attributes_table.php | packages/Webkul/Attribute/src/Database/Migrations/2021_04_02_080709_create_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('attributes', function (... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Database/Migrations/2021_04_06_122751_create_attribute_values_table.php | packages/Webkul/Attribute/src/Database/Migrations/2021_04_06_122751_create_attribute_values_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('attribute_values', func... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Database/Migrations/2025_07_02_191710_alter_attribute_values_table.php | packages/Webkul/Attribute/src/Database/Migrations/2025_07_02_191710_alter_attribute_values_table.php | <?php
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
{
Schema::table('attribute_... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Database/Migrations/2021_04_02_080837_create_attribute_options_table.php | packages/Webkul/Attribute/src/Database/Migrations/2021_04_02_080837_create_attribute_options_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('attribute_options', fun... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Config/attribute_lookups.php | packages/Webkul/Attribute/src/Config/attribute_lookups.php | <?php
return [
];
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Models/Attribute.php | packages/Webkul/Attribute/src/Models/Attribute.php | <?php
namespace Webkul\Attribute\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Attribute\Contracts\Attribute as AttributeContract;
class Attribute extends Model implements AttributeContract
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Models/AttributeValue.php | packages/Webkul/Attribute/src/Models/AttributeValue.php | <?php
namespace Webkul\Attribute\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Activity\Traits\LogsActivity;
use Webkul\Attribute\Contracts\AttributeValue as AttributeValueContract;
class AttributeValue extends Model implements AttributeValueContract
{
use LogsActivity;
/**
* Disable the d... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Models/AttributeOption.php | packages/Webkul/Attribute/src/Models/AttributeOption.php | <?php
namespace Webkul\Attribute\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Attribute\Contracts\AttributeOption as AttributeOptionContract;
class AttributeOption extends Model implements AttributeOptionContract
{
public $timestamps = false;
/**
* The attributes that are mass assignable.... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Models/AttributeOptionProxy.php | packages/Webkul/Attribute/src/Models/AttributeOptionProxy.php | <?php
namespace Webkul\Attribute\Models;
use Konekt\Concord\Proxies\ModelProxy;
class AttributeOptionProxy 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/Attribute/src/Models/AttributeProxy.php | packages/Webkul/Attribute/src/Models/AttributeProxy.php | <?php
namespace Webkul\Attribute\Models;
use Konekt\Concord\Proxies\ModelProxy;
class AttributeProxy 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/Attribute/src/Models/AttributeValueProxy.php | packages/Webkul/Attribute/src/Models/AttributeValueProxy.php | <?php
namespace Webkul\Attribute\Models;
use Konekt\Concord\Proxies\ModelProxy;
class AttributeValueProxy 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/Attribute/src/Repositories/AttributeRepository.php | packages/Webkul/Attribute/src/Repositories/AttributeRepository.php | <?php
namespace Webkul\Attribute\Repositories;
use Illuminate\Container\Container;
use Illuminate\Support\Str;
use Webkul\Core\Eloquent\Repository;
class AttributeRepository extends Repository
{
/**
* Create a new repository instance.
*
* @return void
*/
public function __construct(
... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Repositories/AttributeValueRepository.php | packages/Webkul/Attribute/src/Repositories/AttributeValueRepository.php | <?php
namespace Webkul\Attribute\Repositories;
use Carbon\Carbon;
use Illuminate\Container\Container;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Storage;
use Webkul\Attribute\Contracts\AttributeValue;
use Webkul\Core\Eloquent\Repository;
class AttributeValueRepository extends Repository
{
/... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Repositories/AttributeOptionRepository.php | packages/Webkul/Attribute/src/Repositories/AttributeOptionRepository.php | <?php
namespace Webkul\Attribute\Repositories;
use Webkul\Core\Eloquent\Repository;
class AttributeOptionRepository extends Repository
{
/**
* Specify Model class name
*
* @return mixed
*/
public function model()
{
return 'Webkul\Attribute\Contracts\AttributeOption';
}
}
| php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Providers/ModuleServiceProvider.php | packages/Webkul/Attribute/src/Providers/ModuleServiceProvider.php | <?php
namespace Webkul\Attribute\Providers;
use Webkul\Core\Providers\BaseModuleServiceProvider;
class ModuleServiceProvider extends BaseModuleServiceProvider
{
protected $models = [
\Webkul\Attribute\Models\Attribute::class,
\Webkul\Attribute\Models\AttributeOption::class,
\Webkul\Attrib... | php | MIT | 6b6fadfecea0ff5d80aedb9345602ff79e11922d | 2026-01-04T15:02:34.361572Z | false |
krayin/laravel-crm | https://github.com/krayin/laravel-crm/blob/6b6fadfecea0ff5d80aedb9345602ff79e11922d/packages/Webkul/Attribute/src/Providers/AttributeServiceProvider.php | packages/Webkul/Attribute/src/Providers/AttributeServiceProvider.php | <?php
namespace Webkul\Attribute\Providers;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;
class AttributeServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot(Router $router)
{
$this->loadMigration... | 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/Vite.php | packages/Webkul/Core/src/Vite.php | <?php
namespace Webkul\Core;
use Illuminate\Support\Facades\Vite as BaseVite;
use Webkul\Core\Exceptions\ViterNotFound;
class Vite
{
/**
* Return the asset URL.
*
* @return string
*/
public function asset(string $filename, string $namespace = 'admin')
{
$viters = config('krayi... | 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/Menu.php | packages/Webkul/Core/src/Menu.php | <?php
namespace Webkul\Core;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Webkul\Core\Menu\MenuItem;
class Menu
{
/**
* Menu items.
*/
private array $items = [];
/**
* Config menu.
*/
private array $configMenu = [];
/**
* Contains current item key.... | 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/Core.php | packages/Webkul/Core/src/Core.php | <?php
namespace Webkul\Core;
use Carbon\Carbon;
use Webkul\Core\Repositories\CoreConfigRepository;
use Webkul\Core\Repositories\CountryRepository;
use Webkul\Core\Repositories\CountryStateRepository;
class Core
{
/**
* The Krayin version.
*
* @var string
*/
const KRAYIN_VERSION = '2.1.6';... | 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/ViewRenderEventManager.php | packages/Webkul/Core/src/ViewRenderEventManager.php | <?php
namespace Webkul\Core;
use Illuminate\Support\Facades\Event;
class ViewRenderEventManager
{
/**
* Contains all templates
*
* @var array
*/
protected $templates = [];
/**
* Parameters passed with event
*
* @var array
*/
protected $params;
/**
* ... | 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/Acl.php | packages/Webkul/Core/src/Acl.php | <?php
namespace Webkul\Core;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Webkul\Core\Acl\AclItem;
class Acl
{
/**
* acl items.
*/
protected array $items = [];
/**
* Add a new acl item.
*/
public function addItem(AclItem $aclItem): void
{
$this->... | 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/SystemConfig.php | packages/Webkul/Core/src/SystemConfig.php | <?php
namespace Webkul\Core;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Config;
use Webkul\Core\Repositories\CoreConfigRepository;
use Webkul\Core\SystemConfig\Item;
class SystemConfig
{
/**
* Items array.
*/
public array $items = [];
/**
... | 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/Exceptions/ViterNotFound.php | packages/Webkul/Core/src/Exceptions/ViterNotFound.php | <?php
namespace Webkul\Core\Exceptions;
class ViterNotFound extends \Exception
{
/**
* Create an instance.
*
* @param string $theme
* @return void
*/
public function __construct($namespace)
{
parent::__construct("Viter with `$namespace` namespace not found. Please add `$... | 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/SystemConfig/Item.php | packages/Webkul/Core/src/SystemConfig/Item.php | <?php
namespace Webkul\Core\SystemConfig;
use Illuminate\Support\Collection;
class Item
{
/**
* Create a new Item instance.
*/
public function __construct(
public Collection $children,
public ?array $fields,
public ?string $icon,
public ?string $info,
public ... | 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/SystemConfig/ItemField.php | packages/Webkul/Core/src/SystemConfig/ItemField.php | <?php
namespace Webkul\Core\SystemConfig;
use Illuminate\Support\Str;
class ItemField
{
/**
* Laravel to Vee Validation mappings.
*
* @var array
*/
protected $veeValidateMappings = [
'min'=> 'min_value',
];
/**
* Create a new ItemField instance.
*/
public fu... | 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/Helpers/Helper.php | packages/Webkul/Core/src/Helpers/Helper.php | <?php
namespace Webkul\Core\Helpers;
class Helper
{
/**
* @param string $packageName
* @return array
*/
public function jsonTranslations($packageName)
{
$currentLocale = app()->getLocale();
$path = __DIR__."/../../../$packageName/src/Resources/lang/$currentLocale/app.php"... | 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/Http/helpers.php | packages/Webkul/Core/src/Http/helpers.php | <?php
use Webkul\Core\Acl;
use Webkul\Core\Core;
use Webkul\Core\Menu;
use Webkul\Core\SystemConfig;
use Webkul\Core\ViewRenderEventManager;
use Webkul\Core\Vite;
if (! function_exists('core')) {
/**
* Core helper.
*/
function core(): Core
{
return app('core');
}
}
if (! function_ex... | 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/Http/Controllers/CoreController.php | packages/Webkul/Core/src/Http/Controllers/CoreController.php | <?php
namespace Webkul\Core\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 CoreController extends BaseController
{
use Auth... | 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/Traits/Sanitizer.php | packages/Webkul/Core/src/Traits/Sanitizer.php | <?php
namespace Webkul\Core\Traits;
use enshrined\svgSanitize\data\AllowedAttributes;
use enshrined\svgSanitize\data\AllowedTags;
use enshrined\svgSanitize\Sanitizer as MainSanitizer;
use Exception;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Storage;
/**
* Trait for sanitizing SVG uploads to p... | 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/Traits/PDFHandler.php | packages/Webkul/Core/src/Traits/PDFHandler.php | <?php
namespace Webkul\Core\Traits;
use Barryvdh\DomPDF\Facade\Pdf;
use Illuminate\Support\Str;
use Mpdf\Mpdf;
trait PDFHandler
{
/**
* Download PDF.
*
* @return \Illuminate\Http\Response
*/
protected function downloadPDF(string $html, ?string $fileName = null)
{
if (is_null($... | 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/Acl/AclItem.php | packages/Webkul/Core/src/Acl/AclItem.php | <?php
namespace Webkul\Core\Acl;
use Illuminate\Support\Collection;
class AclItem
{
/**
* Create a new AclItem instance.
*/
public function __construct(
public string $key,
public string $name,
public array|string $route,
public int $sort,
public Collection $... | 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/Contracts/CountryState.php | packages/Webkul/Core/src/Contracts/CountryState.php | <?php
namespace Webkul\Core\Contracts;
interface CountryState {}
| 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/Contracts/Country.php | packages/Webkul/Core/src/Contracts/Country.php | <?php
namespace Webkul\Core\Contracts;
interface Country {}
| 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/Contracts/CoreConfig.php | packages/Webkul/Core/src/Contracts/CoreConfig.php | <?php
namespace Webkul\Core\Contracts;
interface CoreConfig {}
| 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/Contracts/Validations/Decimal.php | packages/Webkul/Core/src/Contracts/Validations/Decimal.php | <?php
namespace Webkul\Core\Contracts\Validations;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class Decimal implements ValidationRule
{
/**
* Run the validation rule.
*
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
*/
public 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/Contracts/Validations/Code.php | packages/Webkul/Core/src/Contracts/Validations/Code.php | <?php
namespace Webkul\Core\Contracts\Validations;
use Illuminate\Contracts\Validation\Rule;
class Code implements Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $v... | 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/Database/Migrations/2025_01_29_133500_update_text_column_type_in_core_config_table.php | packages/Webkul/Core/src/Database/Migrations/2025_01_29_133500_update_text_column_type_in_core_config_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::table('core_config', 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/Core/src/Database/Migrations/2021_04_12_173232_create_countries_table.php | packages/Webkul/Core/src/Database/Migrations/2021_04_12_173232_create_countries_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('countries', 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/Core/src/Database/Migrations/2021_04_12_173344_create_country_states_table.php | packages/Webkul/Core/src/Database/Migrations/2021_04_12_173344_create_country_states_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('country_states', functi... | 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/Database/Migrations/2021_03_12_060658_create_core_config_table.php | packages/Webkul/Core/src/Database/Migrations/2021_03_12_060658_create_core_config_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('core_config', function ... | 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/Facades/Menu.php | packages/Webkul/Core/src/Facades/Menu.php | <?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Menu extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return '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/Facades/Core.php | packages/Webkul/Core/src/Facades/Core.php | <?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Core extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return '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/Facades/Acl.php | packages/Webkul/Core/src/Facades/Acl.php | <?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Acl extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'acl';
}
}
| 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/Facades/SystemConfig.php | packages/Webkul/Core/src/Facades/SystemConfig.php | <?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class SystemConfig extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'system_config';
}
}
| 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/Console/Commands/Version.php | packages/Webkul/Core/src/Console/Commands/Version.php | <?php
namespace Webkul\Core\Console\Commands;
use Illuminate\Console\Command;
class Version extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'krayin-crm:version';
/**
* The console command description.
*
*... | 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/Config/concord.php | packages/Webkul/Core/src/Config/concord.php | <?php
return [
'modules' => [
\Webkul\Activity\Providers\ModuleServiceProvider::class,
\Webkul\Admin\Providers\ModuleServiceProvider::class,
\Webkul\Attribute\Providers\ModuleServiceProvider::class,
\Webkul\Automation\Providers\ModuleServiceProvider::class,
\Webkul\Contact\P... | 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/Config/cors.php | packages/Webkul/Core/src/Config/cors.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Laravel CORS Options
|--------------------------------------------------------------------------
|
| The allowed_methods and allowed_headers options are case-insensitive.
|
| You don't need ... | 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/Config/sanctum.php | packages/Webkul/Core/src/Config/sanctum.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Stateful Domains
|--------------------------------------------------------------------------
|
| Requests from the following domains / hosts will receive stateful API
| authentication cookies. T... | 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/Menu/MenuItem.php | packages/Webkul/Core/src/Menu/MenuItem.php | <?php
namespace Webkul\Core\Menu;
use Illuminate\Support\Collection;
class MenuItem
{
/**
* Create a new MenuItem instance.
*
* @return void
*/
public function __construct(
private string $key,
private string $name,
private string $route,
private string $ur... | 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/Resources/lang/pt_BR/app.php | packages/Webkul/Core/src/Resources/lang/pt_BR/app.php | <?php
return [
'validations' => [
'code' => 'O campo deve ser um código válido.',
'decimal' => 'O campo deve ser um número decimal.',
],
];
| 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/Resources/lang/tr/app.php | packages/Webkul/Core/src/Resources/lang/tr/app.php | <?php
return [
'validations' => [
'code' => 'Alan geçerli bir kod olmalıdır.',
'decimal' => 'Alan ondalık bir sayı olmalıdır.',
],
];
| 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/Resources/lang/en/app.php | packages/Webkul/Core/src/Resources/lang/en/app.php | <?php
return [
'validations' => [
'code' => 'The field must be a valid code.',
'decimal' => 'The field must be a decimal number.',
],
];
| 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/Resources/lang/ar/app.php | packages/Webkul/Core/src/Resources/lang/ar/app.php | <?php
return [
'validations' => [
'code' => 'يجب أن يكون الحقل رمزًا صالحًا.',
'decimal' => 'يجب أن يكون الحقل رقمًا عشريًا.',
],
];
| 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/Resources/lang/vi/app.php | packages/Webkul/Core/src/Resources/lang/vi/app.php | <?php
return [
'validations' => [
'code' => 'Trường phải là một mã hợp lệ.',
'decimal' => 'Trường phải là một số thập phân.',
],
];
| 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/Resources/lang/fa/app.php | packages/Webkul/Core/src/Resources/lang/fa/app.php | <?php
return [
'validations' => [
'code' => 'این فیلد باید یک کد معتبر باشد.',
'decimal' => 'این فیلد باید یک عدد اعشاری باشد.',
],
];
| 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/Resources/lang/es/app.php | packages/Webkul/Core/src/Resources/lang/es/app.php | <?php
return [
'validations' => [
'code' => 'El campo debe ser un código válido.',
'decimal' => 'El campo debe ser un número decimal.',
],
];
| 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/CountryState.php | packages/Webkul/Core/src/Models/CountryState.php | <?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Core\Contracts\CountryState as CountryStateContract;
class CountryState extends Model implements CountryStateContract
{
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/CountryStateProxy.php | packages/Webkul/Core/src/Models/CountryStateProxy.php | <?php
namespace Webkul\Core\Models;
use Konekt\Concord\Proxies\ModelProxy;
class CountryStateProxy 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/CoreConfigProxy.php | packages/Webkul/Core/src/Models/CoreConfigProxy.php | <?php
namespace Webkul\Core\Models;
use Konekt\Concord\Proxies\ModelProxy;
class CoreConfigProxy extends ModelProxy {}
| 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.