28 lines
447 B
PHP
28 lines
447 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models\Forms;
|
||
|
|
||
|
use App\Models\Forms\Form;
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class FormSubmission extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'data'
|
||
|
];
|
||
|
|
||
|
protected $casts = [
|
||
|
'data' => 'array'
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* RelationShips
|
||
|
*/
|
||
|
public function form() {
|
||
|
return $this->belongsTo(Form::class);
|
||
|
}
|
||
|
}
|