jump bridge statistics
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user