@extends('layouts.pos') @section('css') @endsection @section('content')
{{ __('Dashboard') }} {{ $location->name }} {{ __('Logout') }}
{{ __('Items') }} {{ __('Unit Price') }} {{ __('Quantity') }} {{ __('Total Price') }}
{{ __('Please add an item') }}
{{ __('Sub Total') }} 0
{{ __('Tax') }} 0
{{ __('Shipping') }}
{{ __('Discount on Cart') }} 0
{{ __('Products count') }} ( 0 ) {{ __('Net Payable') }} 0
<
  • {{ __('Refresh') }}
  • @foreach($categories as $counter => $category)
  • {{ $category->name }}
  • @endforeach
    >

    {{ __("No products available.") }}

    @foreach($items as $key => $item)
    @if($item->is_stock_managed == 1 && $item->stockMoves->sum('quantity') <= 0) @endif @if(isset($item->image->file_name) && !empty($item->image->file_name) && file_exists(public_path('uploads/items/' . $item->image->file_name))) @else @endif

    {{ $item->name }}

    {{ isset($item->salePrices->price) ? formatCurrencyAmount($item->salePrices->price) : formatCurrencyAmount(0) }}

    @endforeach
    {{-- Add Item Modal --}} {{-- HoldPayModal --}} {{-- Modal --}} {{-- Modal end --}} @endsection @section('js') {!! translateValidationMessages() !!} @endsection