Prepare DoublerEntryCount for deprecation

This commit is contained in:
Matt Young 2025-07-03 10:37:24 -05:00
parent 51b2b01359
commit dd0eb75a33
1 changed files with 12 additions and 10 deletions

View File

@ -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);
// }
}