@extends('layouts.front.app') @section('og') @endsection @section('content') @php $cat = isset($category->name) ? $category->name : "Produtos" @endphp @include('layouts.front.shared.breadcrumb')
@if ($category)

{!! strtoupper($cat) !!}

@include(config('site.domain').'.front.products.product-list', ['products' => $products])
{!!$products->links()!!}
@include(config('site.domain').'.front.products.product-list-mobile', ['products' => $products])
{!!$products->links()!!}
@else @endif
@endsection @section('js') @endsection