StocksNew/Modules/Office/resources/views/purchaseservices/partials/action.blade.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

100 lines
4.4 KiB
PHP

<div class="row">
<div class="col-md-9">
<div class='card'>
<div class='card-body'>
<div class="row gy-3">
<div class="col-lg-6 col-md-6">
{{ html()->label('Service Name')->class('form-label') }}
{{ html()->text('purchase_name')->class('form-control')->placeholder('Service Name') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Purchased Date')->class('form-label') }}
{{ html()->date('purchased_date')->class('form-control') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Reference Number')->class('form-label') }}
{{ html()->text('reference_no')->class('form-control')->placeholder('Reference Number') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('VAT Number')->class('form-label') }}
{{ html()->text('vat_no')->class('form-control')->placeholder('VAT Number') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Contract Name')->class('form-label') }}
{{ html()->text('contract_name')->class('form-control')->placeholder('Contract Name') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Contract Validity')->class('form-label') }}
{{ html()->date('contract_validity')->class('form-control')->placeholder('Contract Validity') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Party Name')->class('form-label') }}
{{ html()->text('party')->class('form-control')->placeholder('Party Name') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Contact Number')->class('form-label') }}
{{ html()->text('contact_no')->class('form-control')->placeholder('Contact Number') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Address')->class('form-label') }}
{{ html()->text('address')->class('form-control')->placeholder('Address') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Quantity')->class('form-label') }}
{{ html()->number('quantity')->class('form-control')->placeholder('Quantity') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Rate')->class('form-label') }}
{{ html()->number('rate')->class('form-control')->placeholder('Rate') }}
</div>
<div class="col-lg-6 col-md-6">
{{ html()->label('Total Amount')->class('form-label') }}
{{ html()->number('total_amount')->class('form-control')->placeholder('Total Amount in Rs') }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control')->placeholder('Contract Description')->attributes(['rows' => 3]) }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Remarks')->class('form-label') }}
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-header">
<h6 class="card-title mb-0">Document</h6>
</div>
<div class="card-body">
<input name="document" type="file" class="dropify" disabled />
</div>
<div class="card-footer">
<x-form-buttons :editable="$editable" label="Add" />
</div>
</div>
</div>
</div>