'date', 'is_delivery_day' => 'boolean', 'override_scope' => OverrideScope::class, ]; public function supplier(): BelongsTo { return $this->belongsTo(Supplier::class); } public function profitCenter(): BelongsTo { return $this->belongsTo(ProfitCenter::class); } public function deliverySchedule(): BelongsTo { return $this->belongsTo(DeliverySchedule::class); } }