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