kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			22 wiersze
		
	
	
		
			302 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			22 wiersze
		
	
	
		
			302 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Bookmark extends Model
 | |
| {
 | |
| 	protected $fillable = ['profile_id', 'status_id'];
 | |
| 
 | |
| 	public function status()
 | |
| 	{
 | |
| 		return $this->belongsTo(Status::class);
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	public function profile()
 | |
| 	{
 | |
| 		return $this->belongsTo(Profile::class);
 | |
| 	}
 | |
| }
 |