forked from mirror/pixelfed
Update Place model
This commit is contained in:
parent
f3415e80ed
commit
a8b63934e4
1 changed files with 6 additions and 8 deletions
|
@ -7,14 +7,7 @@ use Pixelfed\Snowflake\HasSnowflakePrimary;
|
||||||
|
|
||||||
class Place extends Model
|
class Place extends Model
|
||||||
{
|
{
|
||||||
use HasSnowflakePrimary;
|
protected $visible = ['id', 'name', 'country', 'slug'];
|
||||||
|
|
||||||
/**
|
|
||||||
* Indicates if the IDs are auto-incrementing.
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
public $incrementing = false;
|
|
||||||
|
|
||||||
public function url()
|
public function url()
|
||||||
{
|
{
|
||||||
|
@ -30,4 +23,9 @@ class Place extends Model
|
||||||
{
|
{
|
||||||
return $this->posts()->count();
|
return $this->posts()->count();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function statuses()
|
||||||
|
{
|
||||||
|
return $this->hasMany(Status::class, 'id', 'place_id');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue