kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			35 wiersze
		
	
	
		
			639 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			35 wiersze
		
	
	
		
			639 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App;
 | 
						|
 | 
						|
use Auth;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class DirectMessage extends Model
 | 
						|
{
 | 
						|
    public function status()
 | 
						|
    {
 | 
						|
    	return $this->belongsTo(Status::class, 'status_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function url()
 | 
						|
    {
 | 
						|
    	return config('app.url') . '/account/direct/m/' . $this->status_id;
 | 
						|
    }
 | 
						|
 | 
						|
    public function author()
 | 
						|
    {
 | 
						|
    	return $this->belongsTo(Profile::class, 'from_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function recipient()
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Profile::class, 'to_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function me()
 | 
						|
    {
 | 
						|
    	return Auth::user()->profile->id === $this->from_id;
 | 
						|
    }
 | 
						|
}
 |