File: /var/www/wsklad/app/BusinessData.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BusinessData extends Model
{
protected $fillable = [
'name',
'address',
'bulstat',
'danNom',
'mol',
'phone',
'email',
'website',
'customHomeUrl',
'logoUrl',
'complianceDeclarationFooter',
'defaultWarehouseIncomeStore',
'userChangingWarehouse',
'invoiceDiapazon',
'expedDiapazon',
'storeDocNumberingType',
'syncDistributors',
'syncArticles',
'syncContragents',
'syncStores',
'syncPaymentMethods',
'syncBankAccounts',
'syncReceivers',
'syncLotNumbers',
'syncPricelists',
'syncExchangeRates',
'syncSupplierToRetails',
'reportStartDate',
'documentsForPrinting',
'priceDecimalDigits',
'autoSendMobileDocumentsToAjur',
'ajurSyncGoods',
'ajurSyncMaterials',
'ajurSyncServices',
'ajurSyncProducts',
'expedition_search_days_before',
'expedition_search_days_after',
];
protected $table = 'business_data';
}