A
|
FARMER CODE
|
@foreach($data as $farmer)
|
@endforeach
B
|
Farmer First Name
|
@foreach($data as $farmer_first_name)
|
@endforeach
B
|
Farmer Last Name
|
@foreach($data as $farmer_last_name)
|
@endforeach
C
|
S/O or W/O
|
@foreach($data as $father_name)
|
@endforeach
D
|
Village
|
@foreach($data as $farmer_village)
|
@endforeach
E
|
State
|
@foreach($data as $farmer_state)
|
@endforeach
F
|
District
|
@foreach($data as $farmer_dis)
|
@endforeach
G
|
Block
|
@foreach($data as $farmer_block)
|
@endforeach
H
|
Mobile Number
|
@foreach($data as $mobile_number)
|
@endforeach
I
|
Kcc Limit
|
@foreach($data as $kcc_limit)
|
@endforeach
J
|
Land Type
|
@foreach($data as $land_type)
|
@endforeach
K
|
Soil Health Card
|
@foreach($data as $soilHealthCard)
|
@endforeach
L
|
Soil Health Card Remark
|
@foreach($data as $soilHealthCardRemark)
|
@endforeach
M
|
Land Holding Size Unit
|
@foreach($data as $landHoldSizeUnit)
|
@endforeach
N
|
Land Holding (Area)
|
@foreach($data as $land_holding_size)
|
@endforeach
O
|
Land Given Lease Unit
|
@foreach($data as $landGivenLeaseUnit)
|
@endforeach
P
|
Land Given Lease (Area)
|
@foreach($data as $landGivenLease)
|
@endforeach
Q
|
Land Holding Taken Lease Unit
|
@foreach($data as $landHoldTakenLeaseUnit)
|
@endforeach
R
|
Land Holding taken Lease (Area)
|
@foreach($data as $land_holding_taken_lease)
|
@endforeach
S
|
Total Cultivable Area Unit
|
@foreach($data as $totalCultiUnit)
|
@endforeach
T
|
Total Cultivable (Area)
|
@foreach($data as $total_cultivable)
|
@endforeach
L
|
CROPPING PATTERN
|
@php
$counter = [];
@endphp
@foreach($data as $crop_patt)
@php
$farmerId = $crop_patt->farmer_id;
$counter[$farmerId] = isset($counter[$farmerId]) ? $counter[$farmerId] + 1 : 1;
$romanCount = int_to_roman($counter[$farmerId]);
@endphp
CROP {{ $romanCount }}
|
@endforeach
@php
function int_to_roman($num) {
$n = intval($num);
$result = '';
$roman_numerals = array(
'M' => 1000,
'CM' => 900,
'D' => 500,
'CD' => 400,
'C' => 100,
'XC' => 90,
'L' => 50,
'XL' => 40,
'X' => 10,
'IX' => 9,
'V' => 5,
'IV' => 4,
'I' => 1
);
foreach ($roman_numerals as $roman => $value) {
$matches = intval($n / $value);
$result .= str_repeat($roman, $matches);
$n = $n % $value;
}
return $result;
}
@endphp
1
|
Season
|
@foreach($data as $season)
|
@endforeach
2
|
Crop Name
|
@foreach($data as $crop_name)
|
@endforeach
3
|
Total Cultivatable Area Unit
|
@foreach($data as $crop_area_unit)
|
@endforeach
4
|
Total Cultivatable Crop Area
|
@foreach($data as $crop_area)
|
@endforeach
5
|
Irrigated Area
|
@foreach($data as $irr)
|
@endforeach
M
|
CROP WISE COST OF CULTIVATION
|
1
|
Family Labour
|
@foreach($data as $fl)
|
@endforeach
2
|
Family Labour Unit Price
|
@foreach($data as $familyLabourUnitPrice)
|
@endforeach
3
|
Family Labour (Rs.)
|
@foreach($data as $flr)
|
@endforeach
5
|
Family Labour Remarks
|
@foreach($data as $familyLabourRemarks)
|
@endforeach
6
|
Attached Labour Unit
|
@foreach($data as $fl)
|
@endforeach
4
|
Attached Labour (Hrs.)
|
@foreach($data as $attached_labour_hrs)
|
@endforeach
8
|
Attached Labour Unit Price
|
@foreach($data as $attachedLabourUnitPrice)
|
@endforeach
4
|
Attached Labour (Rs.)
|
@foreach($data as $attached_labour_rs)
|
@endforeach
10
|
Attached Labour Remarks
|
@foreach($data as $attachedLabourRemarks)
|
@endforeach
11
|
Casual Labour Unit
|
@foreach($data as $fl)
|
@endforeach
5
|
Casual Labour (Hrs.)
|
@foreach($data as $casual_labour_rs)
|
@endforeach
13
|
Casual Labour Unit Price
|
@foreach($data as $casualLabourUnitPrice)
|
@endforeach
6
|
Casual Labour (Rs.)
|
@foreach($data as $casual_labour_hrs)
|
@endforeach
15
|
Casual Labour Remarks
|
@foreach($data as $casualLabourRemarks)
|
@endforeach
16
|
Hired Animal Unit
|
@foreach($data as $hired_animal_unit)
|
@endforeach
7
|
Hired Animal Labour (Hrs.)
|
@foreach($data as $hired_animal_labour_rs)
|
@endforeach
18
|
Hired Animal Unit Price
|
@foreach($data as $hiredAnimalUnitPrice)
|
@endforeach
8
|
Hired Animal Labour (Rs.)
|
@foreach($data as $hired_animal_labour_hrs)
|
@endforeach
20
|
Hired Animal Remarks
|
@foreach($data as $hiredAnimalRemarks)
|
@endforeach
21
|
Owned Animal Unit
|
@foreach($data as $ownedAnimalUnit)
|
@endforeach
9
|
Owned Animal Labour (Hrs.)
|
@foreach($data as $owned_animal_hrs)
|
@endforeach
23
|
Owned Animal Unit Price
|
@foreach($data as $ownedAnimalUnitPrice)
|
@endforeach
10
|
Owned Animal Labour (Rs.)
|
@foreach($data as $owned_animal_rs)
|
@endforeach
25
|
Owned Animal Remarks
|
@foreach($data as $ownedAnimalRemarks)
|
@endforeach
11
|
Hired Machine (Hrs.)
|
@foreach($data as $hired_machhine_hrs)
|
@endforeach
27
|
Hired Machhine Unit Price
|
@foreach($data as $hiredMachhineUnitPrice)
|
@endforeach
12
|
Hired Machine (Rs.)
|
@foreach($data as $hired_machhine_rs)
|
@endforeach
29
|
Hired Machine Remarks
|
@foreach($data as $hiredMachhineRemarks)
|
@endforeach
30
|
Own Machine Unit
|
@foreach($data as $ownMachineUnit)
|
@endforeach
13
|
Own Machine (Hrs.)
|
@foreach($data as $own_machine_rs)
|
@endforeach
32
|
Own Machine Unit Price
|
@foreach($data as $ownMachineUnitPrice)
|
@endforeach
14
|
Own Machine (Rs.)
|
@foreach($data as $own_machine_hrs)
|
@endforeach
34
|
Own Machine Remarks
|
@foreach($data as $ownMachineRemarks)
|
@endforeach
35
|
Hired Irrigation Machine Unit
|
@foreach($data as $hiredIrrigationMachineUnit)
|
@endforeach
15
|
Hired Irrigation Machine (Hrs.)
|
@foreach($data as $hired_irrigation_machine_hrs)
|
@endforeach
37
|
Hired Irrigation Machine Unit Price
|
@foreach($data as $hired_irrigation_machine_unit_price)
|
@endforeach
16
|
Hired Irrigation Machine (Rs.)
|
@foreach($data as $hired_irrigation_machine_rs)
|
@endforeach
39
|
Hired Irrigation Machine Remarks
|
@foreach($data as $hired_irrigation_machine_remarks)
|
@endforeach
40
|
Owned Irrigation Machine Unit
|
@foreach($data as $ownedIrrigationMachineUnit)
|
@endforeach
17
|
Owned Irrigation Machine (Hrs.)
|
@foreach($data as $owned_irrigation_machine_hrs)
|
@endforeach
42
|
Owned Irrigation Machine Unit Price
|
@foreach($data as $ownedIrrigationMachineUnitPrice)
|
@endforeach
18
|
Owned Irrigation Machine (Rs.)
|
@foreach($data as $owned_irrigation_machine_rs)
|
@endforeach
44
|
Owned Irrigation Machine Remarks
|
@foreach($data as $ownedIrrigationMachineRemarks)
|
@endforeach
45
|
Source of Seed / Plantlets
|
@foreach($data as $seedType)
|
@endforeach
46
|
Seed Variety
|
@foreach($data as $seedVariety)
|
@endforeach
47
|
Seed Qty Unit
|
@foreach($data as $seedQtyUnit)
|
@endforeach
48
|
Seed / Plantlets Quanity
|
@foreach($data as $seed_qty)
|
@endforeach
49
|
Seed Unit Price
|
@foreach($data as $seedUnitPrice)
|
@endforeach
50
|
Seed Value (Rs.)
|
@foreach($data as $seed_value_rs)
|
@endforeach
51
|
Seed Remarks
|
@foreach($data as $seedRemarks)
|
@endforeach
52
|
Fertiliser (N) Qty Unit
|
@foreach($data as $fertiliserNQtyUnit)
|
@endforeach
53
|
Fertiliser (N) Quantity
|
@foreach($data as $fertiliser_n_qty)
|
@endforeach
54
|
Fertiliser (N) Unit Price
|
@foreach($data as $fertiliserNUnitPrice)
|
@endforeach
55
|
Fertiliser (N) (Rs.)
|
@foreach($data as $fertiliser_n_rs)
|
@endforeach
56
|
Fertiliser (N) Remarks
|
@foreach($data as $fertiliserNRemarks)
|
@endforeach
57
|
Fertiliser (P) Qty Unit
|
@foreach($data as $fertiliserPQtyUnit)
|
@endforeach
58
|
Fertiliser (P) Quanity
|
@foreach($data as $fertiliser_p_qty)
|
@endforeach
59
|
Fertiliser (P) Unit Price
|
@foreach($data as $fertiliserPUnitPrice)
|
@endforeach
60
|
Fertiliser (P) (Rs.)
|
@foreach($data as $fertiliser_p_rs)
|
@endforeach
61
|
Fertiliser (P) Remarks
|
@foreach($data as $fertiliserPRemarks)
|
@endforeach
62
|
Fertiliser (K) Qty Unit
|
@foreach($data as $fertiliserKQtyUnit)
|
@endforeach
63
|
Fertiliser (K) Quanity
|
@foreach($data as $fertiliser_k_qty)
|
@endforeach
64
|
Fertiliser (K) Unit Price
|
@foreach($data as $fertiliserKUnitPrice)
|
@endforeach
65
|
Fertiliser (K) (Rs.)
|
@foreach($data as $fertiliser_k_rs)
|
@endforeach
66
|
Fertiliser (K) Remarks
|
@foreach($data as $fertiliserKRemarks)
|
@endforeach
67
|
Other Fertiliser Qty Unit
|
@foreach($data as $otherFertiliserQtyUnit)
|
@endforeach
68
|
Other Fertiliser Qty
|
@foreach($data as $other_fertiliser_qty)
|
@endforeach
69
|
Other Fertiliser Unit Price
|
@foreach($data as $otherFertiliserUnitPrice)
|
@endforeach
70
|
Other Fertiliser (Rs.)
|
@foreach($data as $other_fertiliser_rs)
|
@endforeach
71
|
Other Fertiliser Remarks
|
@foreach($data as $otherFertiliserRemarks)
|
@endforeach
72
|
DAP Qty Unit
|
@foreach($data as $dapQtyUnit)
|
@endforeach
73
|
DAP Qty
|
@foreach($data as $dapQty)
|
@endforeach
74
|
DAP Unit Price
|
@foreach($data as $dapUnitPrice)
{{$dapUnitPrice->dap_unit_price == 'null' ? '' : $dapUnitPrice->dap_unit_price}}
|
@endforeach
75
|
DAP (Rs)
|
@foreach($data as $dap_rs)
|
@endforeach
76
|
DAP Remarks
|
@foreach($data as $dapRemarks)
|
@endforeach
77
|
NPK Qty Unit
|
@foreach($data as $npkQtyUnit)
|
@endforeach
78
|
NPK Qty
|
@foreach($data as $npkQty)
|
@endforeach
79
|
NPK Unit Price
|
@foreach($data as $npkUnitPrice)
|
@endforeach
80
|
NPK (Rs.)
|
@foreach($data as $npk_rs)
|
@endforeach
81
|
NPK Remarks
|
@foreach($data as $npkRemarks)
|
@endforeach
82
|
Manure Qty Unit
|
@foreach($data as $manureQtyUnit)
|
@endforeach
83
|
Manure Qty
|
@foreach($data as $manureQty)
|
@endforeach
84
|
Manure Unit Price
|
@foreach($data as $manureUnitPrice)
|
@endforeach
85
|
Manure (Rs.) FYM
|
@foreach($data as $manure_rs)
|
@endforeach
86
|
Manure Remarks
|
@foreach($data as $manureRemarks)
|
@endforeach
87
|
Insecticide Unit
|
@foreach($data as $insecticideUnit)
|
@endforeach
88
|
Plant Protection Name
|
@foreach($data as $insticideName)
|
@endforeach
89
|
Plant Protection Qty
|
@foreach($data as $insecticideQty)
|
@endforeach
90
|
Plant Protection Unit Price
|
@foreach($data as $insecticideUnitPrice)
|
@endforeach
91
|
Plant Protection (Rs.)
|
@foreach($data as $insecticide_rs)
|
@endforeach
92
|
Plant Protection Remarks
|
@foreach($data as $insecticideRemarks)
|
@endforeach
93
|
Canal / other Irrigation Charges (Rs)
|
@foreach($data as $canalOtherCharges)
|
@endforeach
94
|
Crop Insurance (Rs.)
|
@foreach($data as $crop_insurance_rs)
|
@endforeach
95
|
Miscelaneous Cost (Rs.)
|
@foreach($data as $miscelaneous_cost_rs)
|
@endforeach
96
|
Land Revenue (Rs.) LAGAN
|
@foreach($data as $land_revenue_rs)
|
@endforeach
97
|
Rent Paid for Leased in Land (Rs.)
|
@foreach($data as $rent_paid_leased_land)
|
@endforeach
98
|
Interest on working capital rate(%) KCC
|
@foreach($data as $interest_kcc)
|
@endforeach
99
|
Depericiation of Farm Assets
|
@foreach($data as $depericiation_farm_assets)
|
@endforeach
N
|
OUTPUT OF PRODUCTION & MARKETING CHANNEL
|
1
|
Total Production (Qunital)
|
@foreach($data as $total_production)
|
@endforeach
2
|
Sold Main Product (Qtls.)
|
@foreach($data as $sold_main_product)
|
@endforeach
3
|
Selling Price of main products
|
@foreach($data as $selling_price_main_product)
|
@endforeach
4
|
By Product (Rs.)
|
@foreach($data as $by_product)
|
@endforeach
5
|
Selling Price of By-products
|
@foreach($data as $selling_price_by_product)
|
@endforeach
6
|
Village Trader
|
@foreach($data as $village_trader)
|
@endforeach
7
|
Wholesaler
|
@foreach($data as $wholesaler)
|
@endforeach
8
|
MANDI
|
@foreach($data as $mandi)
|
@endforeach
9
|
Processor
|
@foreach($data as $processor)
|
@endforeach
10
|
Retailer
|
@foreach($data as $retailer)
|
@endforeach
11
|
Consumer
|
@foreach($data as $consumer)
|
@endforeach
O
|
INFRASTRUCTURE
|
1
|
Irrigation Infrastructure
|
a
|
Canal
|
@foreach($data as $canal)
|
@endforeach
b
|
Tubewell
|
@foreach($data as $tubewell)
|
@endforeach
c
|
Enginer / Motor / Solar
|
@foreach($data as $enginer_motor_solar)
|
@endforeach
d
|
Pump Sets ( Diesel/ Electric/ Solar)
|
@foreach($data as $pump_sets)
|
@endforeach
e
|
Pond
|
@foreach($data as $pond)
|
@endforeach
f
|
Sprinkler / Drip Irrigation System
|
@foreach($data as $irrigation_system)
|
@endforeach
g
|
Pump House
|
@foreach($data as $enginer_motor_solar)
|
@endforeach
h
|
Other
|
@foreach($data as $other)
|
@endforeach
2
|
Farm Mechanization
|
a
|
Tractor
|
@foreach($data as $tractor)
|
@endforeach
b
|
Power Tiller
|
@foreach($data as $power_tiller)
|
@endforeach
c
|
Cultivator
|
@foreach($data as $cultivator)
|
@endforeach
d
|
Rotator
|
@foreach($data as $rotator)
|
@endforeach
e
|
Harrow
|
@foreach($data as $harrow)
|
@endforeach
f
|
Leveller
|
@foreach($data as $leveller)
|
@endforeach
g
|
Plough (MB Plough / Disc Plough)
|
@foreach($data as $plough)
|
@endforeach
h
|
Seed drill
|
@foreach($data as $speed_drill)
|
@endforeach
i
|
Seed Planter
|
@foreach($data as $speed_planter)
|
@endforeach
j
|
Seed cum fertilizer drill
|
@foreach($data as $speed_cum_fertilizer_drill)
|
@endforeach
k
|
Trolley
|
@foreach($data as $trolley)
|
@endforeach
l
|
Reaper cum binder
|
@foreach($data as $reaper_cum_binder)
|
@endforeach
m
|
Bhusa Making Machine
|
@foreach($data as $bhusa_machine)
|
@endforeach
n
|
Thresher
|
@foreach($data as $thresher)
|
@endforeach
o
|
Combine Harvester
|
@foreach($data as $combine_harvester)
|
@endforeach
p
|
Other
|
@foreach($data as $other)
|
@endforeach
3
|
Storage Structure
|
a
|
Kothila / Deshi Stoarge Structure
|
@foreach($data as $deshi)
|
@endforeach
b
|
Godown
|
@foreach($data as $godown)
|
@endforeach
c
|
Clod Stoarge
|
@foreach($data as $clod)
|
@endforeach
d
|
Bulk Cooling Unit
|
@foreach($data as $bulk_cooling)
|
@endforeach
e
|
Storage for fodder
|
@foreach($data as $fodder)
|
@endforeach
4
|
Processing Infrstructure
|
a
|
Wheat Processing Unit
|
@foreach($data as $wheat_processing)
|
@endforeach
b
|
Oil Processing Unit
|
@foreach($data as $oil_processing)
|
@endforeach
c
|
Sugarcane Processing Unit
|
@foreach($data as $sugarcane_processing)
|
@endforeach
d
|
Dal Processing Unit
|
@foreach($data as $dal_processing)
|
@endforeach
e
|
Any Other Processing unit
|
@foreach($data as $other_processing)
|
@endforeach
5
|
Retails outlet with producer
|
a
|
Kiran Outlets
|
@foreach($data as $kiran_outlets)
|
@endforeach
b
|
Grossary Outlets
|
@foreach($data as $grossary_outlets)
|
@endforeach
c
|
Any Other Retail outlets
|
@foreach($data as $other_outlets)
|
@endforeach
6
|
Other Infrastructure (Specify)
|
a
|
Shed (Kuchha)
|
@foreach($data as $shed_kuchha)
|
@endforeach
b
|
Shed (Pucca)
|
@foreach($data as $shed_pucca)
|
@endforeach
c
|
Any other infrastructrure
|
@foreach($data as $other_infrastructure)
|
@endforeach
|
|
@foreach($data as $id)
|
@endforeach