Disabled class not working..
This commit is contained in:
parent
8664b9b85b
commit
9cb174f68c
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
{{ 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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
||||||
|
|
||||||
@if ($payment->bill)
|
@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
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
{{ 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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
|
||||||
|
|
||||||
@if ($revenue->invoice)
|
@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
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user