OrderCountingRecord.php 269 B

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