jump bridge rework

This commit is contained in:
2021-05-15 07:12:56 +09:00
parent f3c317b505
commit a0c0186337
14 changed files with 255 additions and 80 deletions

View File

@@ -40,10 +40,14 @@ class MiningTaxesController extends Controller
$this->middleware('role:User');
}
public function DisplayInvoice($invoice) {
public function DisplayInvoice($invoiceId) {
$ores = array();
$totalPrice = 0.00;
$invoice = Invoice::where([
'invoice_id' => $invoiceId,
])->first();
$items = Ledger::where([
'character_id' => auth()->user()->getId(),
'invoice_id' => $invoice,