From c1782cacfe8d47782bdd226879d8e841ea26750b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 11 Apr 2021 06:15:44 +0900 Subject: [PATCH] kernel update --- app/Console/Kernel.php | 1 + .../admin/display/unpaid_bak.blade.php | 52 ------------------- 2 files changed, 1 insertion(+), 52 deletions(-) delete mode 100644 resources/views/miningtax/admin/display/unpaid_bak.blade.php diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index c06ab2adf..b3b8b70f6 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -11,6 +11,7 @@ use App\Jobs\Commands\MiningTaxes\PreFetchMiningTaxesLedgers; use App\Jobs\Commands\MiningTaxes\FetchMiningTaxesObservers; use App\Jobs\Commands\MiningTaxes\ProcessMiningTaxesPayments; use App\Jobs\Commands\MiningTaxes\SendMiningTaxesInvoices; +use App\Jobs\Commands\MiningTaxes\UpdateMiningTaxesLateInvoices; use App\Jobs\Commands\Finances\UpdateAllianceWalletJournal as UpdateAllianceWalletJournalJob; use App\Jobs\Commands\Finances\UpdateItemPrices as UpdateItemPricesJob; use App\Jobs\Commands\Data\PurgeUsers as PurgeUsersJob; diff --git a/resources/views/miningtax/admin/display/unpaid_bak.blade.php b/resources/views/miningtax/admin/display/unpaid_bak.blade.php deleted file mode 100644 index 5e12da496..000000000 --- a/resources/views/miningtax/admin/display/unpaid_bak.blade.php +++ /dev/null @@ -1,52 +0,0 @@ -@extends('layouts.admin.b4') -@section('content') -
-
-
-
-

Invoice Status

-
-
- {{ $invoices->links() }} - - - - - - - - - - - - @foreach($invoices as $invoice) - - - - - - - - - - @endforeach - -
CharacterInvoice IdAmountDate IssuedDate DueStatusUpdate
{{ $invoice->character_name }}{{ $invoice->invoice_id }}{{ number_format($invoice->invoice_amount, 2, ".", ",") }}{{ $invoice->date_issued }}{{ $invoice->date_due }}{{ $invoice->status }} - {!! Form::open(['action' => 'MiningTaxes\MiningTaxesAdminController@UpdateInvoice', 'method' => 'POST']) !!} - {{ Form::hidden('invoiceId', $invoice->invoice_id) }} - {{ Form::label('status', 'Paid') }} - {{ Form::radio('status', 'Paid', true) }} - {{ Form::label('status', 'Deferred') }} - {{ Form::radio('status', 'Deferred') }} - {{ Form::label('status', 'Delete') }} - {{ Form::radio('status', 'Deleted') }} - {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!} -
- {{ $invoices->links() }} -
-

Total Amount Owed: {{ number_format($totalAmount, 2, ".", ",") }}

-
-
-
-@endsection \ No newline at end of file