@extends('shop.main')
@section('header')
@include('shop.components.header')
@endsection
@section('slider')
@include('shop.components.slider')
@endsection
@section('main')
Nossos Produtos!
@php
$count = 1;
@endphp
@foreach ($products as $mainProduct)
@include('shop.components.loops.product-main')
@php
$count ++
@endphp
@if ($count == 3)
@php
$count = 1;
@endphp
@endif
@endforeach
@php
$count2 = 1;
@endphp
@foreach ($products as $mainProduct)
@include('shop.components.loops.product-main')
@php
$count ++
@endphp
@if ($count == 5)
@php
$count = 1;
@endphp
@endif
@endforeach
{{-- @for ($i = 0; $i < 3; $i++)
@include('shop.components.loops.product-main')
@include('shop.components.loops.product-main')
@include('shop.components.loops.product-main')
@include('shop.components.loops.product-main')
@endfor --}}
@endsection
@section('footer')
@include('shop.components.footer')
@endsection
@push('css')