OwnerFeeLogistic.php 704 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class OwnerFeeLogistic extends Model
  6. {
  7. use ModelLogChanging;
  8. public $timestamps=false;
  9. protected $fillable = [
  10. "province_id",
  11. "owner_id",
  12. "city_id",
  13. "logistic_id",
  14. "order_number",
  15. "recipient_name",
  16. "recipient_phone",
  17. "quantity",
  18. "unit_id",
  19. "interval",
  20. "price",
  21. "delivery_fee",
  22. "pick_fee",
  23. "fuel_fee",
  24. "info_fee",
  25. "other_fee",
  26. "initial_fee",
  27. "initial_amount",
  28. "total_fee",
  29. "tax_rate",
  30. "remark",
  31. "created_at",
  32. ];
  33. }