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

Seller.php 272B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Seller extends Model {
  5. protected $table = "sellers";
  6. protected $fillable = [
  7. 'paid','spaceBanked', 'rental','date','purchasePrice','sellingPrice','estateAgency','commission'
  8. ];
  9. }