Enable editing of address for phone/broadband, fix billing start for phone

This commit is contained in:
Deon George
2022-09-29 17:45:43 +10:00
parent ec99a5ff75
commit 15a3b11d2e
6 changed files with 34 additions and 10 deletions

View File

@@ -10,6 +10,17 @@
'value'=>$o->service_number ?? '',
])
</div>
<div class="col-12 col-sm-9 col-md-6 col-xl-7">
@include('adminlte::widget.form_text',[
'label'=>'Service Address',
'icon'=>'fas fa-map',
'id'=>'service_address',
'old'=>'broadband.service_address',
'name'=>'broadband[service_address]',
'value'=>$o->service_address ?? '',
])
</div>
</div>
<div class="row">
@@ -18,7 +29,7 @@
'label'=>'Service Username',
'icon'=>'fas fa-user',
'id'=>'service_username',
'old'=>'broadband.service_username',
'old'=>'broadband.service_username',
'name'=>'broadband[service_username]',
'value'=>$o->service_username ?? '',
])