kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			22 wiersze
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			22 wiersze
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class EmailVerification extends Model
 | |
| {
 | |
|     public function url()
 | |
|     {
 | |
|         $base = config('app.url');
 | |
|         $path = '/i/confirm-email/'.$this->user_token.'/'.$this->random_token;
 | |
| 
 | |
|         return "{$base}{$path}";
 | |
|     }
 | |
| 
 | |
| 	public function user()
 | |
| 	{
 | |
| 		return $this->belongsTo(User::class);
 | |
| 	}
 | |
| }
 |