@extends('layouts.app')
@section('content')
{{ csrf_field() }}
{{__("Prepared items")}}
@foreach($preparedItems as $item)
{{__('Code')}}
{{__('Item')}}
{{__('Quantity')}}
{{__('Discount')}}
{{__('Price')}}
{{__('Total')}}
{{__('Description')}}
@endforeach
{{$item->code}}
{{$item->item_name}}
{{number_format($item->quantity, 2, ',', '.')}}
{{$item->discount}}%
{{number_format($item->price, 2, ',', '.')}}
{{number_format($item->price*$item->quantity*(1-$item->discount/100), 2, ',', '.')}}
{{$item->description}}
{{__("Items")}}
@foreach($itemList as $item)
{{__('Code')}}
{{__('Item')}}
{{__('Quantity')}}
{{__('Discount')}}
{{__('Price')}}
{{__('Total')}}
{{__('Description')}}
@endforeach
@if($item->code_prefix){{$item->code_prefix.'-'}}@endif{{str_pad($item->code, 3, '0', STR_PAD_LEFT)}}
{{$item->name}}
{{number_format($item->quantity, 2, ',', '.')}}
{{$item->discount}}%
{{number_format($item->price, 2, ',', '.')}}
{{number_format($item->price*$item->quantity*(1-$item->discount/100), 2, ',', '.')}}
{{$item->description}}
id}}>