2015-12-08 18:33:33 -05:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-08 18:33:33 -05:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2019-11-24 12:50:16 -08:00
|
|
|
/**
|
2021-01-27 20:52:11 -08:00
|
|
|
* @property int $id
|
|
|
|
* @property string $uuid
|
|
|
|
* @property string $author
|
|
|
|
* @property string $name
|
|
|
|
* @property string|null $description
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
2019-12-28 12:03:19 -08:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Server[] $servers
|
2021-01-27 20:52:11 -08:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Egg[] $eggs
|
2019-11-24 12:50:16 -08:00
|
|
|
*/
|
2020-04-03 23:22:35 -07:00
|
|
|
class Nest extends Model
|
2015-12-08 18:33:33 -05:00
|
|
|
{
|
2018-01-25 21:26:06 -06:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
2021-01-23 12:33:34 -08:00
|
|
|
public const RESOURCE_NAME = 'nest';
|
2018-01-25 21:26:06 -06:00
|
|
|
|
2015-12-08 18:33:33 -05:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-10-06 23:57:53 -05:00
|
|
|
protected $table = 'nests';
|
2016-01-19 19:10:39 -05:00
|
|
|
|
2016-02-15 15:21:28 -05:00
|
|
|
/**
|
2017-02-17 20:40:50 -05:00
|
|
|
* Fields that are mass assignable.
|
2016-02-15 15:21:28 -05:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-10-02 22:51:13 -05:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
];
|
2017-02-05 17:58:17 -05:00
|
|
|
|
2021-07-17 15:18:05 -06:00
|
|
|
public static array $validationRules = [
|
2021-01-03 16:45:07 -07:00
|
|
|
'author' => 'sometimes|string|email',
|
2020-09-26 16:29:26 -07:00
|
|
|
'name' => 'required|string|max:191',
|
2020-04-17 20:52:40 -04:00
|
|
|
'description' => 'nullable|string',
|
2017-08-15 22:21:47 -05:00
|
|
|
];
|
2017-03-12 15:59:17 -04:00
|
|
|
|
2017-02-05 17:58:17 -05:00
|
|
|
/**
|
2017-10-06 23:57:53 -05:00
|
|
|
* Gets all eggs associated with this service.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-10-06 23:57:53 -05:00
|
|
|
public function eggs()
|
2017-02-05 17:58:17 -05:00
|
|
|
{
|
2017-10-06 23:57:53 -05:00
|
|
|
return $this->hasMany(Egg::class);
|
2017-02-05 17:58:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-06 23:57:53 -05:00
|
|
|
* Gets all servers associated with this nest.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function servers()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Server::class);
|
|
|
|
}
|
2015-12-08 18:33:33 -05:00
|
|
|
}
|