| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | <?php namespace BookStack\Actions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Model; | 
					
						
							| 
									
										
										
										
											2016-05-07 03:33:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class Attribute | 
					
						
							|  |  |  |  * @package BookStack | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-14 04:20:21 +08:00
										 |  |  | class Tag extends Model | 
					
						
							| 
									
										
										
										
											2016-05-07 03:33:08 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-13 06:12:05 +08:00
										 |  |  |     protected $fillable = ['name', 'value', 'order']; | 
					
						
							| 
									
										
										
										
											2020-05-23 07:28:41 +08:00
										 |  |  |     protected $hidden = ['id', 'entity_id', 'entity_type']; | 
					
						
							| 
									
										
										
										
											2016-05-07 03:33:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-05-14 04:20:21 +08:00
										 |  |  |      * Get the entity that this tag belongs to | 
					
						
							| 
									
										
										
										
											2016-05-07 03:33:08 +08:00
										 |  |  |      * @return \Illuminate\Database\Eloquent\Relations\MorphTo | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function entity() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->morphTo('entity'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |