This commit is contained in:
2024-05-30 00:02:05 +05:00
parent 12e6c0ca9d
commit 6be7c614c1
5 changed files with 50 additions and 2 deletions

View File

@@ -74,4 +74,12 @@ class CardPin extends Model
{
return $this->belongsTo(Branch::class, 'branch_id');
}
/**
* Price for order
*/
public function priceAmount(): float
{
return 3.02;
}
}

View File

@@ -75,4 +75,12 @@ class CardRequisite extends Model
{
return $this->belongsTo(Branch::class, 'branch_id');
}
/**
* Price for order
*/
public function priceAmount(): float
{
return 2.30;
}
}