@extends('layouts.app') @section('title', __('dashboard.Add New Sale')) @section('page_heading', __('dashboard.Add New Sale')) @php $saleBackRoute = auth()->user()?->hasSalesFocusModeEnabled() ? route('dashboard.sales-focus.index') : route('dashboard.sales.index'); @endphp @section('breadcrumb')
  • {{ __('dashboard.Home') }}
  • {{ __('dashboard.Sales') }}
  • {{ __('dashboard.Add New Sale') }}
  • @endsection @section('content') @include('layouts.partials.workspace-page-styles') @include('dashboard.reservations.partials.customer-lookup-styles')
    @csrf

    {{ __('dashboard.Add New Sale') }}

    {{ __('dashboard.Cancel') }}
    @foreach($posCategories as $category) @endforeach

    {{ __('dashboard.Items in Cart') }}

    0
    {{ __('dashboard.Product') }} {{ __('dashboard.Qty') }} {{ __('dashboard.Total') }}
    {{ __('dashboard.Your cart is empty') }}

    {{ __('dashboard.Customer Details') }}

    {{ __('dashboard.Subtotal') }} 0.00 {{ __('EGP') }}
    {{ __('dashboard.Total Discount') }} 0.00 {{ __('EGP') }}
    {{ __('dashboard.Taxes') }} 0.00 {{ __('EGP') }}
    {{ __('dashboard.Total') }} 0.00 {{ __('EGP') }}
    {{ __('dashboard.Current Balance') }} 0
    {{ __('dashboard.Points Value') }} 0.00 {{ __('EGP') }}
    @foreach($taxes as $tax) @endforeach
    @foreach($additionalExpenses as $expense) @endforeach
    {{ __('dashboard.Cancel') }}
    @endsection @push('modals') @endpush @section('scripts') @include('dashboard.partials.customer-lookup-js') @endsection