OrderCountingRecord.php 238 B

1234567891011
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OrderCountingRecord extends Model
  5. {
  6. //
  7. protected $fillable = ['owner_id','shop_id' ,'warehouse_id' ,'logistic_id' ,'date_target' ,'counting_unit' ,'amount'];
  8. }