pixelfed/app/Place.php

32 lines
527 B
PHP
Raw Normal View History

2019-08-08 06:06:31 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Pixelfed\Snowflake\HasSnowflakePrimary;
class Place extends Model
{
2019-08-13 07:47:15 +00:00
protected $visible = ['id', 'name', 'country', 'slug'];
2019-08-08 06:06:31 +00:00
public function url()
{
return url('/discover/places/' . $this->id . '/' . $this->slug);
}
public function posts()
{
return $this->hasMany(Status::class);
}
public function postCount()
{
return $this->posts()->count();
}
2019-08-13 07:47:15 +00:00
public function statuses()
{
return $this->hasMany(Status::class, 'id', 'place_id');
}
2019-08-08 06:06:31 +00:00
}