UserOwnerGroup.php 171 B

123456789101112
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class UserOwnerGroup extends ModelExtended
  5. {
  6. protected $fillable = [
  7. "name" //名称
  8. ];
  9. }