@extends('layouts.main-app') @section('title', 'Dashboard') @section('content') @include('layouts.navbar')
@foreach ($banners as $banner)
{{ $banner->title }}

{{ $banner->title }}

{{ $banner->subtitle }}

@endforeach
{{--
--}}
{{-- Feature Component --}}
Free Delivery

Free Delivery Nationwide

Enjoy free delivery on eligible orders, saving you time and money.

Personalized Customer Service

Personalized Customer Service

Personalized attention from our friendly and knowledgeable staff, ensuring a positive and hassle-free shopping experience.

Quality Assurance

Quality Assurance

Guaranteed quality steel products, rigorously tested for strength, durability, and compliance with industry standards.

{{-- End Feature Component --}}

Featured Promos

{{--
@foreach ($featuredPromoProducts as $product) @endforeach
--}} {{-- Feature Promotional Banner --}}
@foreach ($promotionalBanners as $promotionalBanner) @endforeach
@foreach ($promotionalBanners as $promotionalBanner) @endforeach
{{-- End Feature Promotional Banner --}}

Best Dealsof the week

@foreach ($bestDealProducts as $product)

{{ $product->name }}

@if ($product->discounted_price) ₱{{ number_format($product->price, 2) }} @endif ₱{{ number_format($product->discounted_price ?? $product->price, 2) }}
@for ($i = 0; $i < 5; $i++) @endfor
Stock Status {{ $product->in_stock > 0 ? 'In Stock' : 'Out of Stock' }}
@csrf
@endforeach
    @if ($bestDealProducts->onFirstPage())
  • Previous
  • @else
  • Previous
  • @endif @foreach ($bestDealProducts->links()->elements[0] as $page => $url) @if ($page == $bestDealProducts->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach @if ($bestDealProducts->hasMorePages())
  • Next
  • @else
  • Next
  • @endif
{{-- Featured Products --}}

FEATUREDPRODUCTS

@foreach ($featuredProducts as $product)

{{ $product->name }}

@if ($product->discounted_price) ₱{{ number_format($product->price, 2) }} @endif ₱{{ number_format($product->discounted_price ?? $product->price, 2) }}
@for ($i = 0; $i < 5; $i++) @endfor
In Stock {{ $product->in_stock > 0 ? 'In Stock' : 'Out of Stock' }}
@csrf
@endforeach
    @if ($featuredProducts->onFirstPage())
  • Previous
  • @else
  • Previous
  • @endif @foreach ($featuredProducts->links()->elements[0] as $page => $url) @if ($page == $featuredProducts->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach @if ($featuredProducts->hasMorePages())
  • Next
  • @else
  • Next
  • @endif
{{-- End Featured Products --}}
Banner
Banner

NEED HELP?

Call Us

(02) 8831 – 0000 / (02) 8230 – 2906

0932 888 7777

Latest Blogs

@foreach ($moreBlogs as $blog)
{{ $blog->title }}
@foreach ($blog->categories as $category) {{ $category->name }} @endforeach

{{ $blog->title }}

{{ Str::limit($blog->content, 100) }}

READ MORE
@endforeach
@include('layouts.footer') @endsection