jump bridge rework
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user