| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelLogChanging;
- class OwnerFeeLogistic extends Model
- {
- use ModelLogChanging;
- public $timestamps=false;
- protected $fillable = [
- "province_id",
- "owner_id",
- "city_id",
- "logistic_id",
- "order_number",
- "recipient_name",
- "recipient_phone",
- "quantity",
- "unit_id",
- "interval",
- "price",
- "delivery_fee",
- "pick_fee",
- "fuel_fee",
- "info_fee",
- "other_fee",
- "initial_fee",
- "initial_amount",
- "total_fee",
- "tax_rate",
- "remark",
- "created_at",
- ];
- }
|