diff --git a/Modules/Adjustment/Resources/views/create.blade.php b/Modules/Adjustment/Resources/views/create.blade.php index 28b26421..97cc5376 100644 --- a/Modules/Adjustment/Resources/views/create.blade.php +++ b/Modules/Adjustment/Resources/views/create.blade.php @@ -2,10 +2,6 @@ @section('title', 'Create Adjustment') -@push('page_css') - @livewireStyles -@endpush - @section('breadcrumb')
Product | +Net Unit Price | +Stock | +Quantity | +Discount | +Tax | +Sub Total | +Action | +
---|---|---|---|---|---|---|---|
+ {{ $cart_item->name }} + + {{ $cart_item->options->code }} + + @include('livewire.includes.product-cart-modal') + |
+
+ {{ format_currency($cart_item->options->unit_price) }} | + ++ {{ $cart_item->options->stock }} + | + ++ @include('livewire.includes.product-cart-quantity') + | + ++ {{ format_currency($cart_item->options->product_discount) }} + | + ++ {{ format_currency($cart_item->options->product_tax) }} + | + ++ {{ format_currency($cart_item->options->sub_total) }} + | + ++ + | +
+ + Please search & select products! + + | +
Order Tax ({{ $global_tax }}%) | +(+) {{ format_currency(Cart::instance('sale')->tax()) }} | +
---|---|
Discount ({{ $global_discount }}%) | +(-) {{ format_currency(Cart::instance('sale')->discount()) }} | +
Shipping | + +(+) {{ format_currency($shipping) }} | +
Grand Total | + @php + $total_with_shipping = Cart::instance('sale')->total() + (float) $shipping + @endphp ++ (=) {{ format_currency($total_with_shipping) }} + | +