@extends('layouts.master') @section('title', 'POS | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.pos')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection @section('content')
@csrf
@if(count($products) > 0) @foreach ($products as $item) {{-- products --}}
...

{{ $item->name }}

{{ $item->barcode }}

{{ $item->quantity }}

{{ $item->unit->name }}

{{ $item->sell_price }}

{{ $currency }}

@endforeach @else

{{ __('basic.no product found') }}

@endif
{{ __('basic.current order') }}
{{ __('basic.items') }}
{{ __('basic.quantity') }}
{{ __('basic.final price') }}
{{ __('basic.add product to order') }}
{{ __('basic.subtotal') }}
0 {{ $currency }}
{{ __('basic.tax') }}
0 {{ $currency }}
{{ __('basic.discount') }}
0 {{ $currency }}
{{ __('basic.final price') }}
0 {{ $currency }}
@endsection @section('js') @endsection