diff --git a/app/Console/Commands/Finances/UpdateAllianceWalletJournal.php b/app/Console/Commands/Finances/UpdateAllianceWalletJournal.php index ea2f30ea4..54b90eb4c 100644 --- a/app/Console/Commands/Finances/UpdateAllianceWalletJournal.php +++ b/app/Console/Commands/Finances/UpdateAllianceWalletJournal.php @@ -53,9 +53,14 @@ class UpdateAllianceWalletJournal extends Command $task = new CommandHelper('UpdateAllianceWalletJournal'); //Set the task as started $task->SetStartStatus(); + $startTime = time(); $fHelper->GetApiWalletJournal(1, $config['primary']); + $endTime = time(); + + printf("Updating the wallets took " . ($endTime - $startTime) . " seconds.\r\n"); + //Set the task as stopped $task->SetStopStatus(); diff --git a/resources/views/reports/user/displayform.blade.php b/resources/views/reports/user/displayform.blade.php index 611c41198..b687d43ed 100644 --- a/resources/views/reports/user/displayform.blade.php +++ b/resources/views/reports/user/displayform.blade.php @@ -1,4 +1,14 @@ @extends('layouts.user.dashb4') @section('content') +
+
+
+
+
+
+ +
+
+
@endsection \ No newline at end of file