本文整理汇总了PHP中app\models\Product::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::delete方法的具体用法?PHP Product::delete怎么用?PHP Product::delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Product
的用法示例。
在下文中一共展示了Product::delete方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: deleteProduct
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');
}
示例2: destroy
/**
* 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'));
}
示例3: delete
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');
}
示例4: Product
<?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>';
示例5: destroy
/**
* 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'));
}