@extends('frontend.layouts.layout') @push('title') | Lista de productos @endpush @include('frontend.partials.header') @section('content')
@forelse ($products as $product) @if($product->state) @if( $product->stock !== 0 ) @else

{{ $product->discount }} DCTO
{{ $product->ref }}
{{-- Disponibles: {{ $product->stock }} --}}

{{ $product->name }}

{{ Str::limit($product->description, 80, '...') }}

Antes ${{ number_format($product->oldPrice,0,',','.') }} COP Ahora ${{ number_format($product->price,0,',','.') }} COP

@endif @endif @empty @endforelse
@endsection @push('footer') @include('frontend.partials.footer') @endpush @push('js') @endpush