Fix VOIP services from 500 errors
This commit is contained in:
parent
62f587d7e6
commit
d7b5d9a272
@ -68,7 +68,7 @@ final class Voip extends Type implements ProductItem
|
|||||||
|
|
||||||
public function hasUsage(): bool
|
public function hasUsage(): bool
|
||||||
{
|
{
|
||||||
return TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function allowance(): Collection
|
public function allowance(): Collection
|
||||||
@ -78,7 +78,7 @@ final class Voip extends Type implements ProductItem
|
|||||||
|
|
||||||
public function allowance_string(): string
|
public function allowance_string(): string
|
||||||
{
|
{
|
||||||
// TODO: Implement allowance_string() method.
|
return "(TBA)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCostAttribute(): float
|
public function getCostAttribute(): float
|
||||||
|
@ -0,0 +1,35 @@
|
|||||||
|
<div class="form-group row">
|
||||||
|
<label for="reference" class="col-sm-3 col-form-label text-right">Service Number</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text"><i class="fa fa-fw fa-phone"></i></span>
|
||||||
|
</div>
|
||||||
|
<input type="text" class="form-control" name="voip[service_number]" value="{{ $o->service_number ?? '' }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="reference" class="col-sm-3 col-form-label text-right">Service Username</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text"><i class="fa fa-fw fa-user"></i></span>
|
||||||
|
</div>
|
||||||
|
<input type="text" class="form-control" name="voip[service_username]" value="{{ $o->service_username ?? '' }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="reference" class="col-sm-3 col-form-label text-right">Service Password</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text"><i class="fa fa-fw fa-lock"></i></span>
|
||||||
|
</div>
|
||||||
|
<input type="text" class="form-control" name="voip[service_password]" value="{{ $o->service_password ?? '' }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -45,8 +45,8 @@
|
|||||||
<!-- @todo -->
|
<!-- @todo -->
|
||||||
@if($o->service->product->type)
|
@if($o->service->product->type)
|
||||||
<tr>
|
<tr>
|
||||||
<th>Traffic</th>
|
<th>Usage</th>
|
||||||
<td>{{ $o->service->product->type->allowance_string() }} GB @if(FALSE)(YY GB used month)@endif</td>
|
<td>{{ $o->service->product->type->allowance_string() }} Included Calls</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
@if ($o->inContract())
|
@if ($o->inContract())
|
||||||
|
Loading…
Reference in New Issue
Block a user