Old UniVate Website
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Agency.php 290B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Agency extends Model {
  5. protected $table = "agencies";
  6. protected $fillable = [
  7. 'name','email', 'phone','mobile','username','agency','EAAB_FFC_Number','registrationNum','password','agencyAdmin'
  8. ];
  9. }