Disabled class not working..

This commit is contained in:
Cüneyt Şentürk 2020-02-01 13:42:26 +03:00
parent 8664b9b85b
commit 9cb174f68c
4 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
{{ Form::selectGroup('document_id', trans_choice('general.bills', 1), 'file-invoice', [], null, ['disabled']) }}
{{ Form::selectGroup('document_id', trans_choice('general.bills', 1), 'file-invoice', [], null, ['disabled' => 'disabled']) }}
</div>
</div>

View File

@ -60,7 +60,7 @@
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
@if ($payment->bill)
{{ Form::textGroup('document_id', trans_choice('general.bills', 1), 'file-invoice', ['disabled'], $payment->bill->bill_number) }}
{{ Form::textGroup('document_id', trans_choice('general.bills', 1), 'file-invoice', ['disabled' => 'disabled'], $payment->bill->bill_number) }}
@endif
</div>
</div>

View File

@ -40,7 +40,7 @@
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
{{ Form::selectGroup('document_id', trans_choice('general.invoices', 1), 'file-invoice', [], null, ['disabled']) }}
{{ Form::selectGroup('document_id', trans_choice('general.invoices', 1), 'file-invoice', [], null, ['disabled' => 'disabled']) }}
</div>
</div>

View File

@ -60,7 +60,7 @@
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
@if ($revenue->invoice)
{{ Form::textGroup('document_id', trans_choice('general.invoices', 1), 'file-invoice', ['disabled'], $revenue->invoice->invoice_number) }}
{{ Form::textGroup('document_id', trans_choice('general.invoices', 1), 'file-invoice', ['disabled' => 'disabled'], $revenue->invoice->invoice_number) }}
@endif
</div>
</div>