You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
269 B

3 years ago
  1. <?php
  2. namespace App\Models;
  3. use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Model;
  4. /**
  5. *
  6. *
  7. *
  8. */
  9. class Note extends Model
  10. {
  11. use \Conner\Tagging\Taggable;
  12. protected $fillable = [
  13. 'title',
  14. 'description',
  15. 'attachment'
  16. ];
  17. }