@extends('template.app') @section('meta') @endsection @section('title') Car Variant Update @endsection @section('styles') @endsection @section('content')
@if($orders_data->inventory_id == NULL)
@else
@csrf @method('POST')

Vehicle Tax Invoice


@if(isset($orders_data->customer_gst) && $orders_data->customer_gst != NULL && $orders_data->customer_gst == 'corporate')
@endif
@if($data->state_id == '7') @else @endif
PARTICULARS AMOUNT(Rs)
{{ $orders_data->product_name }} {{ $orders_data->on_road_price }}
Discount {{ $orders_data->discount }}
Net Selling Price {{$orders_data->selling_price}}
CGST ({{$tex_master_gst}}%) {{$orders_data->cgst}}
SGST ({{$tex_master_gst}}%) {{$orders_data->sgst}}
IGST ({{$tex_master_gst}}%) {{$orders_data->igst}}
Compensation Cess ({{$tex_master_compensation_cess}}%) {{$orders_data->compensation_cess}}
TOTAL {{$orders_data->total}}
TCS @1% {{ $orders_data->tcs_tax}}
GRAND TOTAL {{$orders_data->grand_total}}
Vehicle Particulars
Vin No Chassis No Engine No Key No HSN No
{{$orders_data->vin_number}} {{$orders_data->chassis_number}} {{$orders_data->engine_number}} {{$orders_data->key_number}} {{$orders_data->hsn_code}}
Back
@endif
@endsection @section('scripts') @endsection