PXG_2026_API/app/Models/Checkin.php

15 lines
344 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Checkin extends Model
{
protected $fillable = ['event_id','registration_id','checked_in_at','checked_in_by','method'];
protected $casts = ['checked_in_at' => 'datetime'];
public function registration(){ return $this->belongsTo(Registration::class); }
}