<?php declare(strict_types=1);
namespace App\Orders\Product;
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface HasOrderedProductsInterface
{
/**
* The ordered products
*/
public function orderedProducts():MorphMany;
}