UserOwnerGroup.php 224 B

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