| 1 | <?php |
||
| 7 | class Note extends Model |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The attributes that are mass assignable. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $fillable = [ |
||
| 15 | 'name', 'description' |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the user that owns the note. |
||
| 20 | * |
||
| 21 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 22 | */ |
||
| 23 | public function user() |
||
| 27 | |||
| 28 | } |
||
| 29 |