@extends('layouts.app') @section('title', $title) @section('content') Just In {{ $title }} Discover the latest products added to our store. Fresh inventory, trending items, and exclusive new releases. @if($products->count() > 0) @foreach($products as $product) @if($product->primaryImage) @else {{ substr($product->name, 0, 1) }} @endif @if($product->getDiscountPercentage() > 0) -{{ $product->getDiscountPercentage() }}% @endif NEW @if($product->vendor) {{ $product->vendor->name }} @endif {{ $product->name }} @for($i = 1; $i <= 5; $i++) @endfor ({{ $product->reviews_count }}) {{ price($product->price) }} @if($product->compare_price && $product->compare_price > $product->price) {{ price($product->compare_price) }} @endif View @csrf Add to Cart @endforeach {{ $products->links() }} @else No New Arrivals Yet We're working on adding fresh products. Check back soon! Browse All Products @endif @endsection
Discover the latest products added to our store. Fresh inventory, trending items, and exclusive new releases.
We're working on adding fresh products. Check back soon!