Edit File: UserInterestOption.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class UserInterestOption extends Model { protected $fillable = [ 'interest_option_id', 'user_id', ]; }
Back to File Manager