本文整理匯總了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'));
}