@extends('layouts.app') @section('content')

Welcome to Little Loop

Discover amazing products and categories in our store. Shop with confidence and enjoy the best shopping experience.

Our Categories

Browse through our wide range of categories and find what you're looking for.

@foreach($categories as $category)
@if($category->image)
{{ $category->name_en }} @if($category->is_featured)
Featured
@endif
@endif

{{ $category->name_en }}

{{ $category->name_ar }}

@if($category->description_en)

{{ Str::limit($category->description_en, 100) }}

@endif @if($category->children->isNotEmpty())

Subcategories

@foreach($category->children as $subcategory) {{ $subcategory->name_en }} @endforeach
@endif
@endforeach

Featured Products

Check out our featured products and find the best deals.

@foreach($featuredProducts as $product)
@if($product->images->isNotEmpty())
{{ $product->name_en }} @if($product->is_featured)
Featured
@endif
@endif

{{ $product->name_en }}

{{ $product->name_ar }}

${{ number_format($product->price, 2) }} @if($product->compare_price) ${{ number_format($product->compare_price, 2) }} @endif
@endforeach
@endsection