@extends('layouts.app') @section('title') All Balloting Map Files @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
@if ($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif @php $total_val = count($allStatements); @endphp

Pre-Condtion Invnetory List

Total Inventories are : {{ $total_val }}


@csrf {{-- Balloting Map File --}} {{--
--}}

Select Balloting Map File


@if ($errors->has('map_file')) {{ $errors->first('map_file') }} @endif
@if ($errors->has('specific_block')) {{ $errors->first('specific_block') }} @endif
{{--
@if ($errors->has('add_preference')) {{ $errors->first('add_preference') }} @endif
--}}
{{--
--}} {{-- Balloting Map File --}}

{{ $pre_cond->name }}


@foreach ($allStatements as $statement) {{-- @if ($statement->status == \App\CustomerProperty::pending) @elseif($statement->status == \App\CustomerProperty::approved) @elseif($statement->status == \App\CustomerProperty::cancel) @elseif($statement->status == \App\CustomerProperty::block) @else @endif --}} @endforeach
# Unit # Size Customer Net Amount Booking Date Preference Action
{{ $count++ }} {{ $statement->inventory ? $statement->inventory->unit_number : '' }} @if ($statement->inventory) @if ($statement->inventory->size) {{ $statement->inventory->size->name }} @if ($projectType->id == \App\ProjectType::society) {{ \App\ProjectType::society_size }} @else {{ \App\ProjectType::high_rise_size }} @endif @endif @endif {{ $statement->customer ? $statement->customer->name . '---' . $statement->customer->cnic : '' }}
{{ number_format($statement->net_pay) }} {{ date('d-m-Y', strtotime($statement->booking_date)) }} PendingApprovedCanceledBlock

@stop @section('js') @stop