@extends('layouts.app') @section('title',config('app.name').' — Digital Products Marketplace') @section('content') @if($banners->count())
PREMIUM DIGITAL MARKETPLACE

Build faster with ready-to-use software.

Website source code, Android apps, APIs, plugins, recharge systems and ecommerce products.

Explore Products
</>
@endif

Explore

Shop By Category

@foreach(\App\Models\Category::where('status',true)->orderBy('sort_order')->take(6)->get() as $cat)
{{ $cat->icon ?: '◈' }}
{{ $cat->name }}
{{ $cat->products()->where('status',true)->count() }} products
@endforeach
@foreach($sections as $section)

{{ $section->name }}

View all →
@php $list=$section->category?$section->category->products()->where('status',true)->latest()->take($section->number_of_products)->get():$products->take($section->number_of_products); @endphp @foreach($list as $p)@endforeach
@endforeach
@endsection