@extends('admin.layouts.app') @section('title', 'Point of Sale') @section('content')

Point of Sale

Manage sales and transactions

Cashier
{{ auth()->user()->name }}
Date
{{ date('M d, Y') }}
Time
{{ date('H:i:s') }}
@foreach($products as $product)
@if($product->images) {{ $product->name }} @else
@endif @if($product->sale_price)
SALE
@endif @if($product->stock_quantity <= 5)
LOW STOCK
@endif

{{ $product->name }}

{{ $product->sku }}

@if($product->sale_price) ${{ number_format($product->sale_price, 2) }} ${{ number_format($product->price, 2) }} @else ${{ number_format($product->price, 2) }} @endif
Stock
{{ $product->stock_quantity }}
@endforeach

Current Order

0 items

Your cart is empty

Add products from the left panel to start selling

@push('scripts') @endpush @endsection