23 lines
		
	
	
		
			321 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			321 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class Tag extends Model
 | 
						|
{
 | 
						|
    //
 | 
						|
 | 
						|
    protected $fillable = [
 | 
						|
        'name'
 | 
						|
    ];
 | 
						|
    protected $visible = [
 | 
						|
        'name'
 | 
						|
    ];
 | 
						|
 | 
						|
    public function ejaculations()
 | 
						|
    {
 | 
						|
        return $this->belongsToMany('App\Ejaculation')->withTimestamps();
 | 
						|
    }
 | 
						|
}
 |