@extends('layouts.admin-layout') @section('title','Order') @section('content')

Create Order

@php //$settings = new App\MasterSetting(); //$site = $settings->siteData(); $customers = App\User::where('user_type',2)->latest()->get(); $products = App\Product::where('is_active', 1)->get(); $currency = '₹'; @endphp {{ @csrf_field() }}

Customer Details

*



Product Details

product qty unit_price amount actions
x
total

{{ $currency }} 0

@endsection @push('js') @endpush