@extends('layouts.app') @section('title', "The Wealth Finder") @section('header_css') @stop @section('content')
@include('includes.advanved-search')
@if(is_array($requestData) && count($requestData)>0)  Total {{$investorDataList->total()}} Records Found.      @endif {!! $investorDataList->appends($requestData)->links('pagination::bootstrap-4') !!}  
@if(!empty($investorDataList) && $investorDataList->count()) @foreach($investorDataList as $key => $value) @endforeach @else @endif
Investor Name Father Name Company Name Address No. of Shares Market Value of Share Action
{{ $value->investor_fullname }} {{ $value->father_fullname }} {{ $value->company_name }}
{{$value->address}} {{ $value->district }} {{ $value->state }} {{ $value->country }} - {{ $value->pin_code }}
{{ $value->no_of_share }} {{ $value->no_of_share_cmp }} View
No Data Found !!
@if(is_array($requestData) && count($requestData)>0)  Total {{$investorDataList->total()}} Records Found.      @endif {!! $investorDataList->appends($requestData)->links('pagination::bootstrap-4') !!}  
@stop @section('footer_scripts') @stop