37 lines
659 B
PHP
37 lines
659 B
PHP
<?php
|
|
|
|
namespace App\Models\Forms;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class FormSubmission extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public const STATUS_PARTIAL = 'partial';
|
|
public const STATUS_COMPLETED = 'completed';
|
|
|
|
protected $fillable = [
|
|
'data',
|
|
'completion_time',
|
|
'status'
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'data' => 'array',
|
|
'completion_time' => 'integer',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* RelationShips
|
|
*/
|
|
public function form()
|
|
{
|
|
return $this->belongsTo(Form::class);
|
|
}
|
|
}
|