Browse Source

Update settings.blade.php

1day2die 2 years ago
parent
commit
138695a5ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/views/servers/settings.blade.php

+ 1 - 1
resources/views/servers/settings.blade.php

@@ -256,7 +256,7 @@
                                           <select name="product_upgrade" id="product_upgrade" class="form-input2 form-control">
                                             <option value="">{{__("Select the product")}}</option>
                                               @foreach($products as $product)
-                                                  @if(in_array($server->egg, $product->eggs) && $product->id != $server->product->id && $server->product->disabled == false)
+                                                  @if(in_array($server->egg, $product->eggs) && $product->id != $server->product->id && $product->disabled == false)
                                                     <option value="{{ $product->id }}">{{ $product->name }} [ {{ CREDITS_DISPLAY_NAME }} {{ $product->price }} ]</option>
                                                   @endif
                                               @endforeach