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

Commercial.php 509B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Commercial extends Model {
  5. protected $table = "commercials";
  6. protected $fillable = [
  7. 'name','ref','location','size','description','intro','price','contact_person','contact_email','contact_mobile','image1','image2','image3','image4','propertType','region','for','parking','town','surburb','unit','published','opCost','address','status2','facilities','directions','virtualtour','meta_Description','meta_Keywords'
  8. ];
  9. }