15 lines
344 B
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); }
|
|
}
|