MatchmakerConsultant.php 232 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class MatchmakerConsultant extends Model
  5. {
  6. protected $table = 'love_matchmaker_consultant';
  7. protected $fillable = [
  8. 'uid', 'huid','time'
  9. ];
  10. }