Let's Talk
@php $categories_list = App\Models\Category::where('status', 'Active')->get(); @endphp
@php $socials = App\Models\Social::first(); $sessionId = session()->getId(); $userId = auth()->check() ? auth()->id() : null; $wishlistCount = $userId ? \App\Models\Wishlist::where('user_id', $userId)->count() : \App\Models\Wishlist::where('session_id', $sessionId)->count(); $cartCount = $userId ? \App\Models\Cart::where('user_id', $userId)->sum('quantity') : \App\Models\Cart::where('session_id', $sessionId)->sum('quantity'); @endphp
{{-- LEFT : LOGO --}} {{-- CENTER : SEARCH + BUTTONS --}}
{{-- SEARCH --}} {{-- VENDOR REGISTER --}}
{{-- RIGHT : ICONS --}}
{{-- WISHLIST --}} @if ($wishlistCount > 0) {{ $wishlistCount }} @endif {{-- CART --}} @if ($cartCount > 0) {{ $cartCount }} @endif {{-- USER --}} @php $user = Auth::user(); @endphp @if ($user) @else @endif
@php $categories = App\Models\Category::where('status', 'Active')->get(); @endphp
{{-- --}}
@php $locations = collect($schools)->pluck('location')->filter()->unique()->sort()->values(); @endphp
Discover school uniforms, books & more

Find your school store in seconds

Discover and apply to the best schools for your child with ease.

Find Your School

All School Stores



@if (count($schools) > 0)
Showing {{ count($schools) }} of {{ count($schools) }} schools
@endif
@forelse($schools as $school)
@if ($school->image) {{ $school->name }} @else No Image @endif
{{ $school->name }}

{{ $school->location }}

Login as student to view mapped items.
@empty
No schools available
@endforelse

No schools match your search. Try a different name or location.


How It Works

Search for Your School

Use the search bar or location filter to quickly find your school from our listings.

Create Account / Register

Sign up by entering your student details to create your personal account and access school-specific services.

Shop for Your School Supplies

Browse and purchase books, uniforms, stationery, and other required items customized for your school.

Login & Checkout / Admission Process

Log in to complete your purchase securely and apply for admission by submitting the required details and documents.


@php $socials = App\Models\Social::first(); @endphp