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.
 
 
 

21 lines
269 B

<?php
namespace App\Models;
use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Model;
/**
*
*
*
*/
class Note extends Model
{
use \Conner\Tagging\Taggable;
protected $fillable = [
'title',
'description',
'attachment'
];
}