jump bridge statistics

This commit is contained in:
2018-12-26 23:05:56 -06:00
parent 27328343b3
commit 92a707190a
4 changed files with 6 additions and 6 deletions

View File

@@ -18,9 +18,9 @@ class JumpBridgeController extends Controller
$jbHelper90 = new JumpBridgeTax(90);
$data = [
'30days' => $jbHelper30->OverallTax(),
'60days' => $jbHelper60->OverallTax(),
'90days' => $jbHelper90->OverallTax(),
'30days' => number_format($jbHelper30->OverallTax(), 2, '.', ','),
'60days' => number_format($jbHelper60->OverallTax(), 2, '.', ','),
'90days' => number_format($jbHelper90->OverallTax(), 2, '.', ','),
];
return view('jumpbridges.all')->with('data', $data);

View File

@@ -20,7 +20,7 @@ class CreateJumpBridgeJournal extends Migration
$table->integer('division')->default(0);
$table->decimal('amount', 20, 2)->nullable();
$table->decimal('balance', 20, 2)->nullable();
$table->integer('context_id')->nullable();
$table->bigInteger('context_id')->nullable();
$table->string('context_id_type')->nullable();
$table->dateTime('date')->nullabe();
$table->string('description')->nullabe();

View File

@@ -20,7 +20,7 @@ class CreateCorpMarketJournal extends Migration
$table->integer('division')->default(0);
$table->decimal('amount', 20, 2)->nullable();
$table->decimal('balance', 20, 2)->nullable();
$table->integer('context_id')->nullable();
$table->bigInteger('context_id')->nullable();
$table->string('context_id_type')->nullable();
$table->dateTime('date')->nullabe();
$table->string('description')->nullabe();

View File

@@ -20,7 +20,7 @@ class CreatePlayerDonationJournal extends Migration
$table->integer('division')->default(0);
$table->decimal('amount', 20, 2)->nullable();
$table->decimal('balance', 20, 2)->nullable();
$table->integer('context_id')->nullable();
$table->bigInteger('context_id')->nullable();
$table->string('context_id_type')->nullable();
$table->dateTime('date')->nullabe();
$table->string('description')->nullabe();