D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
app
/
Models
/
Filename :
Question.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Str; class Question extends Model { use HasFactory; protected $table = 'questions'; protected $primaryKey = 'id'; protected $fillable = [ 'exam_id', 'name' ]; public function user() { return $this->belongsTo(User::class, 'user_id'); } public function exam() { return $this->belongsTo(Exam::class, 'exam_id'); } public function options() { return $this->hasMany(Question_option::class, 'question_id'); } protected static function boot() { parent::boot(); self::creating(function($model){ $model->uuid = Str::uuid()->toString(); $model->user_id = auth()->id(); }); } }