'date', 'end_date' => 'date', 'printed_at' => 'date', 'type' => ContractType::class, 'status' => ContractStatus::class, ]; } public function product(): BelongsTo { return $this->belongsTo(Product::class); } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } public function feedbacks(): HasMany { return $this->hasMany(Feedback::class); } }