@extends('layouts.app') @section('title', __('pos.products.title')) @push('styles') @endpush @section('content')

{{ __('pos.products.title') }}

{{ __('common.back') }}
@if($products->isEmpty())

{{ __('products.items.no_products_found') }}

@else
@foreach($products as $product)
@if($product->images->isNotEmpty()) {{ $product->name }} @else
@endif

{{ $product->name }}

{{ number_format($product->sale_price, 0) }}
@endforeach
@endif
@endsection