File size: 255 Bytes
95eee3d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace App\Services;

class SeiyakuPriceService
{
    public function getSeiyakuPrice(ShopFrontDetails $shopFrontDetails)
    {
        // implement logic to get seiyaku price
        // for now, return a dummy value
        return 1000;
    }
}