[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: OrderItemTableSeeder.php
<?php namespace Database\Seeders; use App\Enums\TaxType; use Dipokhalder\EnvEditor\EnvEditor; use Illuminate\Database\Seeder; use App\Models\OrderItem; class OrderItemTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $envService = new EnvEditor(); if ($envService->getValue('DEMO')) { OrderItem::insert([ [ 'order_id' => 1, 'branch_id' => 1, 'item_id' => 6, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'No-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0, 'price' => 5.230000, 'item_variations' => '[{"id":9,"item_id":6,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[{"id":3,"item_id":6,"name":"Add Onion"},{"id":4,"item_id":6,"name":"Add Patty"}]', 'item_variation_total' => 0.000000, 'item_extra_total' => 1.500000, 'total_price' => 6.730000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 1, 'branch_id' => 1, 'item_id' => 48, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'No-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 1, 'branch_id' => 1, 'item_id' => 18, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.225000, 'price' => 3.500000, 'item_variations' => '[{"id":34,"item_id":18,"item_attribute_id":"1","variation_name":"Size","name":"Large - 10"}]', 'item_extras' => '[]', 'item_variation_total' => 1.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 1, 'branch_id' => 1, 'item_id' => 53, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.000000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 1, 'branch_id' => 1, 'item_id' => 33, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.200000, 'price' => 4.000000, 'item_variations' => '[{"id":76,"item_id":33,"item_attribute_id":"2","variation_name":"Quantity Choice","name":"Pack of 6"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 2, 'branch_id' => 1, 'item_id' => 27, 'quantity' => 2, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 3.260000, 'item_variations' => '[{"id":59,"item_id":27,"item_attribute_id":"3","variation_name":"Steak Size","name":"Regular"},{"id":61,"item_id":27,"item_attribute_id":"4","variation_name":"Steak Temperature","name":"Rare"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 6.520000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 2, 'branch_id' => 1, 'item_id' => 55, 'quantity' => 2, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 3.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 2, 'branch_id' => 1, 'item_id' => 23, 'quantity' => 2, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.175000, 'price' => 3.500000, 'item_variations' => '[{"id":45,"item_id":23,"item_attribute_id":"2","variation_name":"Quantity Choice","name":"6 pcs"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 7.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 2, 'branch_id' => 1, 'item_id' => 16, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.225000, 'price' => 4.500000, 'item_variations' => '[{"id":29,"item_id":16,"item_attribute_id":"1","variation_name":"Size","name":"Regular - 6"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 2, 'branch_id' => 1, 'item_id' => 53, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.000000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 3, 'branch_id' => 1, 'item_id' => 14, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.500000, 'item_variations' => '[{"id":25,"item_id":14,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 3, 'branch_id' => 1, 'item_id' => 53, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.000000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 3, 'branch_id' => 1, 'item_id' => 44, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.000000, 'item_variations' => '[{"id":80,"item_id":44,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 3, 'branch_id' => 1, 'item_id' => 43, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 3, 'branch_id' => 1, 'item_id' => 45, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 4, 'branch_id' => 1, 'item_id' => 22, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 4.000000, 'item_variations' => '[{"id":42,"item_id":22,"item_attribute_id":"2","variation_name":"Quantity Choice","name":"6 pcs"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 4, 'branch_id' => 1, 'item_id' => 52, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[{"id":86,"item_id":52,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 5, 'branch_id' => 1, 'item_id' => 6, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 5.230000, 'item_variations' => '[{"id":9,"item_id":6,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[{"id":3,"item_id":6,"name":"Add Onion"},{"id":4,"item_id":6,"name":"Add Patty"}]', 'item_variation_total' => 0.000000, 'item_extra_total' => 1.500000, 'total_price' => 6.730000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 5, 'branch_id' => 1, 'item_id' => 48, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 5, 'branch_id' => 1, 'item_id' => 18, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.225000, 'price' => 3.500000, 'item_variations' => '[{"id":34,"item_id":18,"item_attribute_id":"1","variation_name":"Size","name":"Large - 10"}]', 'item_extras' => '[]', 'item_variation_total' => 1.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 5, 'branch_id' => 1, 'item_id' => 53, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.000000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 5, 'branch_id' => 1, 'item_id' => 33, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'VAT', 'tax_rate' => 5, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.200000, 'price' => 4.000000, 'item_variations' => '[{"id":76,"item_id":33,"item_attribute_id":"2","variation_name":"Quantity Choice","name":"Pack of 6"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 4.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 6, 'branch_id' => 1, 'item_id' => 14, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.500000, 'item_variations' => '[{"id":25,"item_id":14,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 6, 'branch_id' => 1, 'item_id' => 53, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 2.000000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 2.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 6, 'branch_id' => 1, 'item_id' => 44, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.000000, 'item_variations' => '[{"id":80,"item_id":44,"item_attribute_id":"1","variation_name":"Size","name":"Regular"}]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.000000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 6, 'branch_id' => 1, 'item_id' => 43, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], [ 'order_id' => 6, 'branch_id' => 1, 'item_id' => 45, 'quantity' => 1, 'discount' => 0.000000, 'tax_name' => 'NO-VAT', 'tax_rate' => 0, 'tax_type' => TaxType::PERCENTAGE, 'tax_amount' => 0.000000, 'price' => 1.500000, 'item_variations' => '[]', 'item_extras' => '[]', 'item_variation_total' => 0.000000, 'item_extra_total' => 0.000000, 'total_price' => 1.500000, 'instruction' => '', 'created_at' => now(), 'updated_at' => now() ], ]); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.08 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002