@extends('layouts.front.app') @section('og') @endsection @section('content')
@php $cat = isset($category->name) ? $category->name : "produtos" @endphp
@include(config('site.domain').'.front.products.product-list', $products)
@include(config('site.domain').'.front.products.product-list-mobile', $products)
@if (isset($search)) {{ $products->appends(['search' => isset($search) ? $search : ''])->links() }} @else {{ $products->links() }} @endif
@endsection