@extends('layouts.app') @section('title', 'Product POS') @section('actions') Sales @endsection @section('content') @php $posProducts = $products->map(fn ($p) => [ 'id' => $p->id, 'name' => $p->name, 'price' => (float) $p->sale_price, 'stock' => (int) $p->quantity_stock, 'category_id' => $p->product_category_id, 'image' => $p->image_path ? Storage::url($p->image_path) : null, ])->values(); @endphp @if($errors->any())