troubleshooting moon calc

This commit is contained in:
2018-10-25 23:48:31 -05:00
parent e008fecd00
commit c9414e4968

View File

@@ -142,7 +142,7 @@ class MoonCalc {
//Get the configuration from the config table
$config = DB::table('Config')->first();
//Calculate refine rate
$refineRate = $config[0]->RefineRate / 100.00;
$refineRate = $config->RefineRate / 100.00;
dd($refineRate);
//Calculate the current time
$time = time();