@extends('layouts.main-app') @section('title', 'Home') @section('content') @include('layouts.navbar')
Banner

SHOP

Home > SHOP

Featured Promos

@foreach ($featuredPromoProducts as $product)
{{ $product->name }}
@endforeach
{{-- Banner --}} {{--

Filters

--}}

Sort By:

{{--

{{ $products->firstItem() }} - {{ $products->lastItem() }} Products of {{ $products->total() }}

--}}
@if (isset($products) && count($products) > 0)
@foreach ($products as $product)

{{ $product->name }}

@if ($product->discounted_price) ₱{{ number_format($product->price, 2) }} @endif ₱{{ number_format($product->discounted_price ?? $product->price, 2) }}
In Stock In Stock
@csrf
@endforeach
@else

No products found for your search.

@endif
    @if ($products->onFirstPage())
  • Previous
  • @else
  • Previous
  • @endif @foreach ($products->links()->elements[0] as $page => $url) @if ($page == $products->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach @if ($products->hasMorePages())
  • Next
  • @else
  • Next
  • @endif
Banner
@include('layouts.footer')
@endsection