diff --git a/app/Models/DoublerEntryCount.php b/app/Models/DoublerEntryCount.php index 38ffb02..240ef8f 100644 --- a/app/Models/DoublerEntryCount.php +++ b/app/Models/DoublerEntryCount.php @@ -3,19 +3,21 @@ namespace App\Models; use Illuminate\Database\Eloquent\Model; -use Illuminate\Database\Eloquent\Relations\BelongsTo; +//use Illuminate\Database\Eloquent\Relations\BelongsTo; + +// TODO Remove if truly deprecated. I think it is. class DoublerEntryCount extends Model { protected $table = 'doubler_entry_counts'; - public function student(): BelongsTo - { - return $this->belongsTo(Student::class); - } - - public function event(): BelongsTo - { - return $this->belongsTo(Event::class); - } + // public function student(): BelongsTo + // { + // return $this->belongsTo(Student::class); + // } + // + // public function event(): BelongsTo + // { + // return $this->belongsTo(Event::class); + // } }