@extends('admin.layout') @section('content')

{{ trans('Bank File Data') }}

@php $getUserRoleData = userRoleData(); $push_notification = explode(",",$getUserRoleData->push_notification); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(session('success'))
{{ trans('labels.NotifcationSentMessage') }}
@endif
@if(in_array("Send", $push_notification) || true) @if(!empty($result['data']))
@csrf
@php $i = 1; $submit = false; @endphp @foreach($result['data'] as $k => $v) @php if($v[1] == 'A') $date = $v[3] @endphp @if($v[1] == 'D2') @php $submit = true; @endphp @php $i++; @endphp @endif @endforeach @if($submit) @endif
SR No. A/C No. Phone No. Amount Payment Made Date
{{ $i }} {{ $v[2] }} {{ $result['phone'][$v[2]] ?? '' }} {{ number_format((float)$v[3], 2, '.', '') }} {{ $date }}
@endif @else

Please contact with SuperAdmin

@endif
@endsection @section('scripts') @endsection