Viewing file: QuoteItemRepository.php (1.49 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webkul\Quote\Repositories;
use Illuminate\Container\Container; use Webkul\Core\Eloquent\Repository; use Webkul\Product\Repositories\ProductRepository;
class QuoteItemRepository extends Repository { /** * Create a new repository instance. * * @return void */ public function __construct( protected ProductRepository $productRepository, Container $container ) { parent::__construct($container); }
/** * Specify Model class name * * @return mixed */ public function model() { return 'Webkul\Quote\Contracts\QuoteItem'; }
/** * @return mixed */ public function create(array $data) { if (empty($data['product_id'])) { return null; }
$product = $this->productRepository->findOrFail($data['product_id']);
$quoteItem = parent::create(array_merge($data, [ 'sku' => $product->sku, 'name' => $product->name, ]));
return $quoteItem; }
/** * @param int $id * @param string $attribute * @return \Webkul\Quote\Contracts\QuoteItem */ public function update(array $data, $id, $attribute = 'id') { $product = $this->productRepository->findOrFail($data['product_id']);
$quoteItem = parent::update(array_merge($data, [ 'sku' => $product->sku, 'name' => $product->name, ]), $id);
return $quoteItem; } }
|