Файловый менеджер - Редактировать - /home/easybachat/hisabat365.com/4a7891/database.zip
Ðазад
PK ��)[�.�W .gitignorenu �[��� *.sqlite* PK ��)[����� � factories/UserFactory.phpnu �[��� <?php namespace Database\Factories; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'name' => $this->faker->name(), 'email' => $this->faker->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. * * @return \Illuminate\Database\Eloquent\Factories\Factory */ public function unverified() { return $this->state(function (array $attributes) { return [ 'email_verified_at' => null, ]; }); } } PK ��)[�=4�� � ; migrations/2019_03_19_133922_create_product_units_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateProductUnitsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('product_units', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('unit_name'); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('product_units'); } } PK ��)[��TU� � 6 migrations/2018_06_01_080940_create_settings_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSettingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('settings', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->longText('value'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } } PK ��)[{Ht*� � H migrations/2020_12_16_070412_create_purchase_return_item_taxes_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePurchaseReturnItemTaxesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('purchase_return_item_taxes', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('purchase_return_id'); $table->bigInteger('purchase_return_item_id'); $table->bigInteger('tax_id'); $table->string('name',100); $table->decimal('amount',10,2); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('purchase_return_item_taxes'); } } PK ��)[0�;8� � F migrations/2020_08_21_063443_add_related_to_company_email_template.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddRelatedToCompanyEmailTemplate extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('company_email_template', function (Blueprint $table) { $table->string('related_to')->after('body')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('company_email_template', function (Blueprint $table) { $table->dropColumn(['related_to']); }); } } PK ��)[Z��a� � 3 migrations/2020_05_24_153224_create_leads_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateLeadsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('leads', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name',50); $table->string('company_name',50)->nullable(); $table->string('email')->nullable(); $table->integer('converted_lead')->nullable(); $table->bigInteger('lead_status_id'); $table->bigInteger('lead_source_id'); $table->bigInteger('assigned_user_id'); $table->bigInteger('created_user_id'); $table->date('contact_date'); $table->string('phone',20)->nullable(); $table->string('website')->nullable(); $table->string('country',50)->nullable(); $table->string('currency',3); $table->string('vat_id')->nullable(); $table->string('reg_no')->nullable(); $table->string('city',50)->nullable(); $table->string('state',50)->nullable(); $table->string('zip',20)->nullable(); $table->text('address')->nullable(); $table->longText('custom_fields')->nullable(); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('leads'); } } PK ��)[�z�˱ � = migrations/2020_06_22_095143_create_project_members_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateProjectMembersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('project_members', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('project_id'); $table->bigInteger('user_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('project_members'); } } PK ��)[u��0m m @ migrations/2020_12_13_150320_create_invoice_item_taxes_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateInvoiceItemTaxesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('invoice_item_taxes', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('invoice_id'); $table->bigInteger('invoice_item_id'); $table->bigInteger('tax_id'); $table->string('name',100); $table->decimal('amount',10,2); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoice_item_taxes'); } } PK ��)[5yA 3 migrations/2020_06_03_112519_create_files_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateFilesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('files', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('related_to',20)->nullable(); $table->bigInteger('related_id')->nullable(); $table->text('file'); $table->bigInteger('user_id'); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } } PK ��)[,��9 9 G migrations/2019_11_08_143607_create_group_chat_message_status_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateGroupChatMessageStatusTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('group_chat_message_status', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('message_id'); $table->bigInteger('group_id'); $table->bigInteger('user_id'); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('group_chat_message_status'); } } PK ��)[���7� � = migrations/2014_10_12_100000_create_password_resets_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePasswordResetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('password_resets', function (Blueprint $table) { $table->string('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('password_resets'); } } PK ��)[�:6�% % 6 migrations/2018_10_28_104344_create_contacts_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateContactsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('contacts', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('profile_type',20); $table->string('company_name',50)->nullable(); $table->string('contact_name',50); $table->string('contact_email',100); $table->string('vat_id')->nullable(); $table->string('reg_no')->nullable(); $table->string('contact_phone',20)->nullable(); $table->string('country',50)->nullable(); $table->string('currency',3); $table->string('city',50)->nullable(); $table->string('state',50)->nullable(); $table->string('zip',20)->nullable(); $table->text('address')->nullable(); $table->string('facebook')->nullable(); $table->string('twitter')->nullable(); $table->string('linkedin')->nullable(); $table->text('remarks')->nullable(); $table->string('contact_image')->nullable(); $table->bigInteger('group_id')->nullable(); $table->bigInteger('user_id')->nullable(); $table->bigInteger('company_id'); $table->longText('custom_fields')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } } PK ��)[j��� � E migrations/2020_12_17_065847_create_sales_return_item_taxes_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSalesReturnItemTaxesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sales_return_item_taxes', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('sales_return_id'); $table->bigInteger('sales_return_item_id'); $table->bigInteger('tax_id'); $table->string('name',100); $table->decimal('amount',10,2); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sales_return_item_taxes'); } } PK ��)[���D D ? migrations/2020_05_18_104400_create_invoice_templates_table.phpnu �Iw�� <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateInvoiceTemplatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('invoice_templates', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->longText('body'); $table->longText('editor'); $table->text('custom_css')->nullable(); $table->bigInteger('company_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoice_templates'); } } PK ��)[hK)� � <