| 123456789101112131415161718 |
- <?php
- namespace App;
- use App\Traits\ModelLogChanging;
- use Illuminate\Database\Eloquent\Relations\Pivot;
- class RequirementUser extends Pivot
- {
- use ModelLogChanging;
- public $fillable = ['score'];
- public $incrementing = true;
- public $timestamps = false;
- }
|