Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param string $sku
  *
  * @throws \Exception
  *
  * @return \Illuminate\Http\Response
  */
 public function destroy(string $sku)
 {
     $this->catalogueRepository->deleteProductBySku($sku);
     $this->webUi->successMessage("Deleted product `{$sku}`");
     return $this->webUi->redirect('products.index');
 }