kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			69 wiersze
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			69 wiersze
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Instance extends Model
 | |
| {
 | |
| 	protected $fillable = ['domain'];
 | |
| 
 | |
| 	public function profiles()
 | |
| 	{
 | |
| 		return $this->hasMany(Profile::class, 'domain', 'domain');
 | |
| 	}
 | |
| 
 | |
| 	public function statuses()
 | |
| 	{
 | |
| 		return $this->hasManyThrough(
 | |
| 			Status::class,
 | |
| 			Profile::class,
 | |
| 			'domain',
 | |
| 			'profile_id',
 | |
| 			'domain',
 | |
| 			'id'
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	public function reported()
 | |
| 	{
 | |
| 		return $this->hasManyThrough(
 | |
| 			Report::class,
 | |
| 			Profile::class,
 | |
| 			'domain',
 | |
| 			'reported_profile_id',
 | |
| 			'domain',
 | |
| 			'id'
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	public function reports()
 | |
| 	{
 | |
| 		return $this->hasManyThrough(
 | |
| 			Report::class,
 | |
| 			Profile::class,
 | |
| 			'domain',
 | |
| 			'profile_id',
 | |
| 			'domain',
 | |
| 			'id'
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	public function media()
 | |
| 	{
 | |
| 		return $this->hasManyThrough(
 | |
| 			Media::class,
 | |
| 			Profile::class,
 | |
| 			'domain',
 | |
| 			'profile_id',
 | |
| 			'domain',
 | |
| 			'id'
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	public function getUrl()
 | |
| 	{
 | |
| 		return url("/i/admin/instances/show/{$this->id}");
 | |
| 	}
 | |
| }
 |