class ProductController extends Controller
{
public function __construct(protected ProductService $productService)
{
$this->productService = $productService;
$this->middleware(['permission:product-create'], ['only' => ['create', 'store']]);
}
In this case just use below mentioned Extends
class ProductController extends \Illuminate\Routing\Controller
{
public function __construct(protected ProductService $productService)
{
$this->productService = $productService;
$this->middleware(['permission:product-create'], ['only' => ['create', 'store']]);
}