@extends('Frontend.Master') @section('content')

@yield("title")

@if(!count($data))

محصولی موجود نیست

@else @foreach( $data as $key => $product )
@if($showPrice && $product->price>0)
@if($product->discount && $product->discount>0) {{ number_format((int)$product->discount) }} تومان تخفیف @endif
@endif imageUrl}}" alt="">

{{ $product->fa_name }}

{{ $product->summary }}
@if($showPrice && $product->price>0) @if($product->discount && $product->discount>0) {{ number_format((int)$product->price) }} {{ number_format((int)$product->price-$product->discount) }}تومان @else {{ number_format((int)$product->price) }}تومان @endif @endif مشاهده وخرید محصول
@endforeach @endif
{!! $data->links() !!}
@stop @section('script_area') @stop