24 lines
524 B
PHP
24 lines
524 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
//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);
|
|
// }
|
|
}
|