Improvements to handling countries.
This commit is contained in:
@@ -113,7 +113,7 @@ class ScrapeWebsite extends Command
|
||||
$productModel->skuID = $product->skuID;
|
||||
$productModel->name = $product->name;
|
||||
$productModel->availableQuantity = $product->availableQuantity;
|
||||
$productModel->categories = $product->categories;
|
||||
$productModel->categories = str_replace(['/', ' '], '', $product->categories);
|
||||
$productModel->image = $product->image;
|
||||
$productModel->subTitle = $product->subTitle;
|
||||
$productModel->variantCode = $product->variantCode;
|
||||
|
||||
@@ -16,11 +16,11 @@ final class NewController extends BaseController
|
||||
if($this->cache->getItem('list_new')->isHit()) {
|
||||
return $this->render('productList.html.twig', ['listType' => 'new']);
|
||||
}
|
||||
|
||||
$products = Product::where('created_at', '>', now()->modify('-30 days')->format('Y-m-d'))
|
||||
$date = now()->modify('-30 days')->format('Y-m-d');
|
||||
$products = Product::where('created_at', '>', $date)
|
||||
->with(['country', 'stock'])
|
||||
->orderByDesc('starred')
|
||||
->orderByDesc('created_by')
|
||||
->with(['currentPrice', 'lowestPrice'])
|
||||
->get();
|
||||
return $this->render('productList.html.twig', ['products' => $products, 'listType' => 'new']);
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ use function Symfony\Component\Clock\now;
|
||||
class Product extends Model
|
||||
{
|
||||
public $timestamps = true;
|
||||
public $fillable = ['skuID'];
|
||||
public $fillable = ['skuID', 'country_id'];
|
||||
|
||||
public function country(): BelongsTo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user