PrintPart.php 210 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class PrintPart extends Model
  6. {
  7. use ModelLogChanging;
  8. //
  9. protected $fillable = ['name','value'];
  10. }