mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			44 lines
		
	
	
		
			752 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			44 lines
		
	
	
		
			752 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
namespace App;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Pixelfed\Snowflake\HasSnowflakePrimary;
 | 
						|
 | 
						|
class Place extends Model
 | 
						|
{
 | 
						|
	protected $visible = ['id', 'name', 'country', 'slug'];
 | 
						|
 | 
						|
	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();
 | 
						|
	}
 | 
						|
 | 
						|
	public function statuses()
 | 
						|
	{
 | 
						|
		return $this->hasMany(Status::class, 'id', 'place_id');
 | 
						|
	}
 | 
						|
 | 
						|
	public function countryUrl()
 | 
						|
	{
 | 
						|
		$country = strtolower($this->country);
 | 
						|
		$country = urlencode($country);
 | 
						|
		return url('/discover/location/country/' . $country);
 | 
						|
	}
 | 
						|
 | 
						|
	public function cityUrl()
 | 
						|
	{
 | 
						|
		return $this->url();
 | 
						|
	}
 | 
						|
}
 |