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

Our Products

Discover our comprehensive range of innovative solutions designed to meet your needs

Filter by Category
All Products @foreach($categories as $category) {{ $category->name }} @endforeach
@forelse($products as $product)
@if($product->image_url) {{ $product->name }} @else
@endif
@if($product->category) {{ $product->category->name }} @endif
{{ $product->name }}

{{ Str::limit($product->description, 120) }}

@if($product->features && count($product->features) > 0)
Key Features:
    @foreach(array_slice($product->features, 0, 3) as $feature)
  • {{ $feature }}
  • @endforeach @if(count($product->features) > 3)
  • and {{ count($product->features) - 3 }} more...
  • @endif
@endif @if($product->pricingTiers->count() > 0)
@php $minPrice = $product->pricingTiers->where('is_quote_based', false)->min('price'); @endphp @if($minPrice)
Starting at ${{ number_format($minPrice, 2) }}
@else
Contact for Quote
@endif
@endif
@empty

No Products Found

We're working on adding more products. Please check back soon!

@endforelse
@endsection