testing moon worth job

This commit is contained in:
2021-05-30 22:42:17 +09:00
parent e322ceb622
commit 9c1d94cdc0
2 changed files with 8 additions and 2 deletions

View File

@@ -58,7 +58,11 @@ class TestController extends Controller
dd($worth);
$worth = $mHelper->MoonTotalWorth($ores[0], $ores[1], $ores[2], $ores[3], $ores[4], $ores[5], $ores[6], $ores[7]);
return view('test.moonworth.moon')->with('worth', $worth);
}
return view('test.moonworth.moon')->with('worth1', $worth1)
->with('worth2', $worth2);
}
public function DebugMiningTaxesInvoices() {

View File

@@ -1,4 +1,6 @@
@extends('layouts.user.dashb4')
@section('content')
{{ var_dump($worth) }}
{{ var_dump($worth1) }}
<br>
{{ var_dump($worth2) }}
@endsection