<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class MatchmakerGrade extends Model { protected $table = 'love_matchmaker_grade'; protected $fillable = [ 'uid', 'to_uid','start', 'description' ]; }