misc_pterodactyl-panel/app/Models/Nest.php

82 lines
1.9 KiB
PHP
Raw Normal View History

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;
/**
* @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
*
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Server[] $servers
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Egg[] $eggs
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Pack[] $packs
*/
class Nest extends Model
2015-12-08 23:33:33 +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
*/
protected $table = 'nests';
2016-01-20 00:10:39 +00:00
/**
* Fields that are mass assignable.
*
* @var array
*/
2017-10-03 03:51:13 +00:00
protected $fillable = [
'name',
'description',
];
2017-02-05 22:58:17 +00:00
/**
* @var array
*/
public static $validationRules = [
'author' => 'required|string|email',
'name' => 'required|string|max:255',
'description' => 'nullable|string',
];
2017-02-05 22:58:17 +00:00
/**
* Gets all eggs associated with this service.
2017-02-05 22:58:17 +00:00
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function eggs()
2017-02-05 22:58:17 +00:00
{
return $this->hasMany(Egg::class);
2017-02-05 22:58:17 +00:00
}
/**
* Returns all of the packs associated with a nest, regardless of the egg.
2017-02-05 22:58:17 +00:00
*
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
*/
public function packs()
{
return $this->hasManyThrough(Pack::class, Egg::class, 'nest_id', 'egg_id');
2017-02-05 22:58:17 +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
}