Esempio n. 1
0
 /**
  * Remove the specified product brand from storage.
  *
  * @param DeleteInventoryRequest $request
  *
  * @param Brand $brand
  * @return Response
  */
 public function destroy(DeleteInventoryRequest $request, Brand $brand)
 {
     $this->data = $brand->delete();
     return $this->handleRedirect($request, route('backend.brands.index'));
 }