|
@@ -18,4 +18,14 @@ class OwnerLogisticPrintTemplate extends Model
|
|
|
{
|
|
{
|
|
|
return $this->belongsTo(PrintTemplate::class);
|
|
return $this->belongsTo(PrintTemplate::class);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public function owner():BelongsTo
|
|
|
|
|
+ {
|
|
|
|
|
+ return $this->belongsTo(Owner::class);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function logistic():BelongsTo
|
|
|
|
|
+ {
|
|
|
|
|
+ return $this->belongsTo(Logistic::class);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|