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. }