![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/Corals/modules/Timesheet/update-batches/ |
<?php use Corals\Modules\Utility\Facades\ListOfValue\ListOfValues; use Corals\Modules\Utility\Models\ListOfValue\ListOfValue; use Illuminate\Support\Facades\DB; $parentCurrency = ListOfValue::query()->create([ 'code' => 'currency', 'label' => 'Currency', 'value' => 'Currency', 'module' => 'Timesheet' ]); $optionsCurrency = [ 'usd' => [ 'label' => 'USD', 'value' => 'USD', 'module' => 'Timesheet' ] ]; ListOfValues::insertListOfValuesChildren($parentCurrency, $optionsCurrency); DB::table('settings')->insert([ [ 'code' => 'evaluation_can_be_more_than_hours', 'type' => 'BOOLEAN', 'label' => 'Evaluation can be more than Hours', 'value' => 'false', 'editable' => 1, 'is_public' => 1, 'hidden' => 0, 'category' => 'Timesheet', 'created_at' => now(), 'updated_at' => now(), ] ]);