@extends('web.layouts.container') @section('content') @if(count($products)) @foreach($products as $product) {{$product->category_name}} {{$product->name}} @if(count($product->colors)) @foreach($product->colors as $color => $amount) @endforeach @endif @if($product->status) {{__('products.learn_more')}} @endif @if(!$product->status) {{__('products.coming_soon')}} @endif @endforeach @else {{__('products.no_data')}} @endif @endsection @section('inner_js') @endsection