@extends('user_layout.app') @push('style') @endpush @section('content') {{-- SLIDER --}}
@foreach($products as $product) @php $image = $product->firstImage(); @endphp
@if($image) {{ $product->name }} @else No Image @endif QR {{ number_format( $product->standard_price, 2) }}

{{ $product->name }}

@if($product->barcode) QR Code @else QR not generated @endif
View Details
@endforeach
@endsection