created simplified mining tax invoice

This commit is contained in:
2021-05-25 00:29:00 +09:00
parent 211d463288
commit 9293564235

View File

@@ -94,7 +94,7 @@ class TestController extends Controller
//Count the ledgers for the main
$mainLedgerCount = Ledger::where([
'character_id' => $main->character_id,
])->where('last_updated', '>', '2021-03-01')->count();
])->where('last_updated', '>', Carbon::now()->subMonths(3))->count();
dd($mainLedgerCount);