<?php /** * Created by PhpStorm. * User: Administrator * Date: 2017/12/5 * Time: 15:07 */ namespace App; use Illuminate\Database\Eloquent\Model; class TemplatesSourceSalers extends Model { public $timestamps = false; protected $table = "templates_source_salers"; protected $fillable = ['t_id', 'admin_id', 'weight', 'is_del', 's_id']; }