| 1 | <?php namespace Arcanedev\LaravelTracker\Models; |
||
| 16 | class QueryArgument extends Model |
||
| 17 | { |
||
| 18 | /* ------------------------------------------------------------------------------------------------ |
||
| 19 | | Properties |
||
| 20 | | ------------------------------------------------------------------------------------------------ |
||
| 21 | */ |
||
| 22 | /** |
||
| 23 | * The table associated with the model. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $table = 'query_arguments'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * The attributes that are mass assignable. |
||
| 31 | * |
||
| 32 | * @var array |
||
| 33 | */ |
||
| 34 | protected $fillable = ['query_id', 'argument', 'value']; |
||
| 35 | |||
| 36 | /* ------------------------------------------------------------------------------------------------ |
||
| 37 | | Relationships |
||
| 38 | | ------------------------------------------------------------------------------------------------ |
||
| 39 | */ |
||
| 40 | /** |
||
| 41 | * The query relationship. |
||
| 42 | * |
||
| 43 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 44 | */ |
||
| 45 | public function queryRel() |
||
| 51 | } |
||
| 52 |