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

{{ count(App\Models\Products::where('feat', 'yes')->where('slug', null)->get()) }}

Feature Products

{{-- More info --}}

{{ count(App\Models\Products::where('specialOffer', 'yes')->where('slug', null)->get()) }}

Special Offer

{{-- More info --}}

{{ count(App\Models\Products::where('sellPrice', null)->where('slug', null)->get()) }}

Sale

{{-- More info --}}

{{ count(App\Models\Products::where('backStock', 'yes')->where('slug', null)->get()) }}

Back In Stock

{{-- More info --}}
{{-- All Products --}} {{--
All Products
@foreach($sentrySafe as $sentry) @endforeach
Product ID Model Image On Featured List Back On Stock Price Selling Price Action
{{$sentry->prodId}} {{$sentry->model}} Image Here {{$sentry->feat}} {{$sentry->backStock}} {{$sentry->price}} {{$sentry->sellPrice}}
--}} {{-- Sentry Safe --}}
Sentry Safe
@foreach($sentrySafe as $sentry) {{-- --}} {{-- --}} @endforeach
Product ID Model Image On Featured List Back On Stock Price Selling Price Action
{{$sentry->prodId}} {{$sentry->model}} Image Here {{$sentry->feat}} {{$sentry->backStock}} {{$sentry->price}} {{$sentry->sellPrice}}
{{-- Titan Safe --}}
Titan Safe
@foreach($titanSafe as $titan) @endforeach
Product ID Model Image On Featured List Back On Stock Price Selling Price Action
{{$titan->prodId}} {{$titan->model}} Image Here {{$titan->feat}} {{$titan->backStock}} {{$titan->price}} {{$titan->sellPrice}}
{{-- Titan Elite --}}
Titan Elite
@foreach($titanElite as $titans) {{-- --}} {{-- --}} @endforeach
Product ID Model Image On Featured List Back On Stock Price Selling Price Action
{{$titans->prodId}} {{$titans->model}} Image Here {{$titans->feat}} {{$titans->backStock}} {{$titans->price}} {{$titans->sellPrice}}
X-Sense
@foreach($xSense as $xSenses) {{-- --}} {{-- --}} @endforeach
Product ID Model Image On Featured List Back On Stock Price Selling Price Action
{{$xSenses->prodId}} {{$xSenses->model}} Image Here {{$xSenses->feat}} {{$xSenses->backStock}} {{$xSenses->price}} {{$xSenses->sellPrice}}
{{-- --}} {{--
Featured Product
@foreach($data as $products)

Model: {{$products->model}}

Featured: {{$products->feat}}

Back In Stock: {{$products->backStock}}

@endforeach
--}}
@endsection