/
home
/
corsairdevelopme
/
public_html
/
admin-csrnow.corsair-development.com
/
app__b301cdf
/
Models
/
Upload File
HOME
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class PopupNoticeConfirmation extends Model { use HasFactory; Protected $table = 'popup_notice_confirmations'; protected $fillable = [ 'user_id', 'notice_id', 'received_from', 'platform', 'first_ck_checked', 'second_ck_checked', 'third_ck_checked', ]; public function notice() { return $this->belongsTo(PopupNotice::class, 'notice_id'); } }