RequirementUser.php 276 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use App\Traits\ModelLogChanging;
  4. use Illuminate\Database\Eloquent\Relations\Pivot;
  5. class RequirementUser extends Pivot
  6. {
  7. use ModelLogChanging;
  8. public $fillable = ['score'];
  9. public $incrementing = true;
  10. public $timestamps = false;
  11. }