allerta-vvf/backend/app/Models/AlertCrew.php

40 lines
723 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class AlertCrew extends Model
{
use HasFactory;
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'accepted'
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'respondedAt' => 'datetime'
];
/**
* Get the user.
*/
public function user(): BelongsTo {
return $this->belongsTo(User::class);
}
}