public function deleteProduct(Product $product)
 {
     event(new DeleteUnpublishedNotification($product->barcode));
     if ($product->countOrganizations == 1) {
         $product->delete();
     } else {
         $product->organizations()->detach($this->user->organization->id);
     }
     flash()->info('Διεγράφη', 'το συγκεκριμένο προϊόν διεγράφη με επιτυχία από τον Οργανισμό');
     return redirect()->route('Admin::Unpublished::index');
 }
 /**
  * Remove the specified product from storage.
  *
  * @param DeleteInventoryRequest|Request $request
  *
  * @param Product $product
  * @return Response
  * @throws \Exception
  */
 public function destroy(DeleteInventoryRequest $request, Product $product)
 {
     $this->data = $product->delete();
     return $this->handleRedirect($request, route('backend.products.index'));
 }
Example #3
0
 public function delete(Product $product)
 {
     //DELETE all related photos
     $product_photos = ProductPhoto::where("product_id", "=", $product->id)->get();
     foreach ($product_photos as $photo) {
         $this->rmFile($photo->img);
         $this->rmFile($photo->img_orig);
     }
     $product->delete();
     return redirect('cms/product/product');
 }
Example #4
0
<?php

use app\Models\Product;
$product = new Product();
echo 'List all<br>';
echo '<pre>';
print_r($product->all());
echo '</pre>';
echo '<br>Create Product<br>';
$product->name = 'new product';
$product->sku = 'PC';
$product->price = 5.29;
$product->save();
echo '<pre>';
print_r($product->all());
echo '</pre>';
echo '<br>Update product<br>';
$product->name = 'updated description';
$product->save();
echo '<pre>';
print_r($product->all());
echo '</pre>';
echo '<br>Delete product<br>';
$product->delete();
echo '<pre>';
print_r($product->all());
echo '</pre>';
 /**
  * Deletes product
  *
  * @param  Product $product
  * @return Response
  */
 public function destroy(Product $product)
 {
     /**
      * If the image of the product is not default 'No image available'
      * image delete image from public directory
      */
     if (public_path($product->image) != public_path(self::DEFAULT_IMG)) {
         // Check if files exist
         if (File::exists(public_path($product->image)) && File::exists(public_path($product->image_thumb))) {
             File::delete(public_path($product->image));
             File::delete(public_path($product->image_thumb));
         }
     }
     // Delete product
     $product->delete();
     return redirect(route('AdminProductIndex'));
 }