@extends('layouts.template') @section('template') SALES Sales List Print Last Invoice {{ csrf_field() }} @if(Session::has('success')) {{Session::get('success')}} @endif Invoice Date: Invoice Customer: ---Select--- @foreach($customers as $customer) {{$customer->customer_name}} | {{$customer->mobile_no}} @endforeach Add New Customer × New Customer Name (Required) Mobile (Required) Address (Required) Email (Optional) Category (Required) @foreach($customer_categories as $data) {{$data->cat_name}} @endforeach × Customization Delivery Date Note   Cart # Item Stock Description Qty Rate Amount 1 ---Select--- @foreach($items as $item) @if($item->stock_in-$item->stock_out > 0) {{ $item->item_code }} | {{ $item->item_name }} {{ $item->color_name ? '| '.$item->color_name : '' }} {{ $item->size_name ? '| '.$item->size_name : '' }} @endif @endforeach Qty: 0 | Sub Total: 0 | Vat({{$globalSettings->vat_percent}}%): 0   Add/Less # Particulars Amount 1   Payment Grand Total Discount Mode Percentage (%) TK Discount @if($errors->has('item_name')) {{ $errors->first('item_name')}} @endif Amount Paid* @if($errors->has('item_name')) {{ $errors->first('item_name')}} @endif Due @if($errors->has('item_name')) {{ $errors->first('item_name')}} @endif Payment Method* @foreach($accounts as $key => $account) {{ $account->bank_name }} @endforeach Remarks @if(Session::has('success')) @php Session::forget('success'); @endphp @endif @endsection