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-09-04 21:00:34 -07:00
|
|
|
class Nest extends Validable
|
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.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'nest';
|
|
|
|
|
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
|
|
|
|
2017-03-12 15:59:17 -04:00
|
|
|
/**
|
2017-08-15 22:21:47 -05:00
|
|
|
* @var array
|
2017-03-12 15:59:17 -04:00
|
|
|
*/
|
2019-09-04 22:19:57 -07:00
|
|
|
public static $validationRules = [
|
|
|
|
'author' => 'required|string|email',
|
|
|
|
'name' => 'required|string|max:255',
|
|
|
|
'description' => 'sometimes|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
|
|
|
* Returns all of the packs associated with a nest, regardless of the egg.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
|
|
|
*/
|
|
|
|
public function packs()
|
|
|
|
{
|
2017-10-06 23:57:53 -05:00
|
|
|
return $this->hasManyThrough(Pack::class, Egg::class, 'nest_id', 'egg_id');
|
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
|
|
|
}
|