Services
namespace App\Services;
class Product {
public function getProduct($id) {
// ...
}
}use \App\Services\Product as ProductService;
class Product {
public static function getProduct($request, $response) {
// ...
$productService = new ProductService();
return $productService->getProduct($id);
}
}Last updated