modifed blade for unpaid invoices on admin dashboard

This commit is contained in:
2021-03-08 18:46:45 +09:00
parent acb66d4a66
commit d2126bff48
2 changed files with 4 additions and 17 deletions

View File

@@ -31,6 +31,10 @@
{{ Form::hidden('invoiceId', $invoice->invoice_id, ['class' => 'form-control']) }}
{{ Form::label('status', 'Paid') }}
{{ Form::radio('status', 'Paid', ['class' => 'form-control']) }}
{{ Form::label('status', 'Deferred') }}
{{ Form::radio('status', 'Deferred', ['class' => 'form-control']) }}
{{ Form::label('status', 'Deleted') }}
{{ Form::radio('status', 'Deleted', ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</td>