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

{!!$cat!!}

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

@endsection @section('js') @endsection