mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-08 20:49:10 -06:00
(Fix) Seedbox Register for HighSpeed Tag
This commit is contained in:
@@ -13,23 +13,13 @@
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\Traits\Encryptable;
|
||||
|
||||
class Client extends Model
|
||||
{
|
||||
use Encryptable;
|
||||
|
||||
/**
|
||||
* The database table used by the model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $table = 'clients';
|
||||
|
||||
/**
|
||||
* The attributes that should be encrypted on save.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $encrypts = ['ip'];
|
||||
}
|
||||
|
||||
@@ -49,7 +49,8 @@
|
||||
<div class="container box">
|
||||
<h3 class="text-center">My High Speed Seedboxes</h3>
|
||||
@if(count($clients) > 0)
|
||||
<table class="table table-bordered table-striped">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-condensed table-bordered table-striped table-hover">
|
||||
<tr>
|
||||
<th>Client</th>
|
||||
<th>IP</th>
|
||||
@@ -71,6 +72,7 @@
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
@else
|
||||
<li class="list-group-item">
|
||||
<h4 class="text-center">No Seedboxes :(</h4>
|
||||
|
||||
Reference in New Issue
Block a user