@php use App\Models\Ward; use App\Models\User; use App\Models\FloorType; $wards = Ward::all(); $users = User::all(); $floors = FloorType::where('status',1)->get(); @endphp @extends('admin.layouts.adminApp') @section('style') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Property Surveyors List
@foreach($floors as $k=>$floor) @endforeach @foreach($floors as $k=>$floor) @if($floor->id!=10) @else @endif @endforeach
SN Survey Id Owner Name Owner Father Name Mobile No Ward Name Parcel No Property No City Pincode House No Colony Tax Rate Zone Property Type Property Use Road Type Floors Plot Area SqFt Plinth Area SqFt Total Built Up Area SqFt Total Demand
{{ $floor->name }}
Residential Non-ResidentialOpen LandResidential Non-Residential Open Land Total Tax 10% Total Water Tax 7.5% Total Drainage Tax 2.5%
Floor RCC T.Rate Tax TEEN T.Rate Tax KATCHA T.Rate Tax RCC T.Rate Tax TEEN T.Rate Tax KATCHA T.Rate Tax Plot Area Plot T.Rete Plot Tax
@endsection @section('script') @endsection