|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/globalaudiovideo/shop.globalaudiovideo.co.in/app/Services/ |
Upload File : |
<?php
namespace App\Services;
use App\Models\ShippingType;
class ShippingTypeService
{
/**
* @param object $request
* @param string|int $id
* @return array
*/
public function getShippingTypeDataForAdd(object $request, string|int $id ) : array
{
return [
'seller_id' => $id,
'shipping_type' => $request['shippingType'],
];
}
/**
* @param object $request
* @return array
*/
public function getShippingTypeDataForUpdate(object $request) : array
{
return [
'shipping_type' => $request['shippingType'],
];
}
}