Changeset e6c1f87 for app/Models/Document.php
- Timestamp:
- 10/18/21 19:54:18 (3 years ago)
- Branches:
- develop, master
- Children:
- b9c4a92
- Parents:
- bd9e8e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Models/Document.php
rbd9e8e3 re6c1f87 8 8 class Document extends Model 9 9 { 10 use HasFactory; 10 11 protected $table = "documents"; 11 12 12 protected $fillable = ["arch_id", "name", "description", "user_id", "department_id"]; 13 protected $fillable = ["arch_id", "name", "description", "user_id", "department_id", "is_important"]; 14 13 15 14 16 public function user() {
Note:
See TracChangeset
for help on using the changeset viewer.