Files
einundzwanzig-portal/app/Models/Participant.php
Benjamin Takats 8237e1abfd policies updated
2022-12-12 19:17:09 +01:00

31 lines
563 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Participant extends Model
{
use HasFactory;
/**
* The attributes that aren't mass assignable.
* @var array
*/
protected $guarded = [];
/**
* The attributes that should be cast to native types.
* @var array
*/
protected $casts = [
'id' => 'integer',
];
public function registrations()
{
return $this->hasMany(\App\Models\Registration::class);
}
}