@extends('admin.layout.app') @section('title','Create Work Shop Invoice') @push('headerscript') @endpush @section('content')

Create Work Shop Invoice

{!! Form::open(['route'=>array('billing-job-card.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post','files'=>true]) !!}

Customer Detail

{{$errors->first('bill_no')}}
{{--
--}} {{-- --}} {{--
{{$errors->first('job_card_number')}}
--}} {{--
--}}
{{$errors->first('bill_date')}}
{!! Form::select("customer_id", [''=>'select customer']+$customer, old("customer_id"), ['class'=>'form-control select2', 'required', 'id'=>'customer_id'] ) !!}
{{$errors->first('customer_id')}}
{{$errors->first('contact_number')}}
{!! Form::select("vin_number", [''=>'select ']+$vin_no, old("vin_number"), ['class'=>'form-control select2', 'required', 'id'=>'vehicle_vin_number'] ) !!}
{{$errors->first('vin_number')}}
{!! Form::select("plate_number", [''=>'select ']+$plate_no, old("plate_number"), ['class'=>'form-control select2','id'=>'plate_number'] ) !!}
{{$errors->first('plate_number')}}
{!! Form::select("vehicle_brand_id", [''=>'Select Brand']+$vehicleBrands, old("vehicle_brand_id"), ['class'=>'form-control select2' ,'id' => 'vehicle_brand_id','required'=>'required'] ) !!}
{!! Form::select("vehicle_model_id", [''=>'Select Model'], old("vehicle_model_id"), ['class'=>'form-control select2' ,'id' => 'vehicle_model_id','required'=>'required'] ) !!}
{{$errors->first('emirates')}}
{{$errors->first('vehicle_km_in')}}
{{$errors->first('due_date')}}
{{$errors->first('service_reminder_date')}}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control ' ,'id' => 'branch_id','required'=>'required'] ) !!}
{{$errors->first('advisor')}}
{{$errors->first('brought_name')}}
{!! Form::select("job_category", ['regular'=>'Regular', 'insurance'=>'Insurance', 'warranty'=>'Warranty'], old("job_category"), ['class'=>'form-control', 'id'=>'job_category'] ) !!}
{{$errors->first('job_category')}}
{!! Form::select("insurance_id", [''=>'select ', ]+$insurance, old("insurance_id"), ['class'=>'form-control select2', 'id'=>'insurance_id'] ) !!}
{{$errors->first('insurance_id')}}
{{$errors->first('claim_no')}}
{{$errors->first('excess_amount')}}
{{$errors->first('policy_no')}}
{{$errors->first('police_report_no')}}
{{$errors->first('lpo_no')}}
{{$errors->first('lpo_date')}}
{{$errors->first('complete_date')}}
{{-- Job Description Start--}}

Job Description

Job Description
{{-- Job Description End --}} {{-- Spare Part Strat --}}

Spare Parts

Spare Parts Cost Price* Selling Price* Qty.* Total 5% VAT Amount Inc. Tax.
{{-- Spare Part End --}} {{-- Service Start--}}

Service Details

Service description Cost Price* Selling Price* Time* Total Amount 5% Vat Amount Inc. Tax.
{{-- Service End--}} {{-- Sublet Service Start --}}

Sublet Service

Services Cost Price* Selling Price* Time* Total Amount 5% Vat Amount Inc. Tax.
{{$errors->first('t_gross_amount')}}
{{$errors->first('vat_amount')}}
{{$errors->first('net_amount')}}
{!! Form::close() !!}
@include('admin.advisor.models.customer') @include('admin.advisor.models.service') @include('admin.advisor.models.sparePart') @endsection @push('footerscript') @endpush