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

ContactResort.php 234B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ContactResort extends Model {
  5. protected $table = "resorts_contacts";
  6. protected $fillable = [
  7. 'name','surname', 'cell','email','message'
  8. ];
  9. }