@extends('layouts.admin') @section('content') @push('css') {{-- --}} @endpush
Print Preview
{{-- --}} @if(count($members)>0) @foreach($members as $key => $member) {{-- --}} @endforeach @endif
Sl. Picture Name User ID Email Contact Social Present Address Permanent Address Office Address Team Refer Name Refer ID Joining DateRemarks
{{$key + 1}} {{ @$member->name }} {{ $member->user_id }} {{ $member->email }} {{ $member->phone_number }}
@if(count($member->userPhones)>0) @foreach($member->userPhones as $phone_row)
{{$phone_row->phone_number}} @if(count($phone_row->phone_account_data)) @foreach($phone_row->phone_account_data as $account_row) @endforeach @endif
@endforeach @endif
@if(count($member->userProfiles)>0) @foreach ($member->userProfiles as $user_profile) @endforeach @endif @if($member) @if($member->present_address) {{ $member->present_address }} @endif
@if($member->presentAddressDistrict) District: {{ $member->presentAddressDistrict->name_english }}, @endif @if($member->presentAddressThana) Thana: {{ $member->presentAddressThana->name_english }}, @endif @if($member->presentAddressUnion) Union: {{ $member->presentAddressUnion->name_english }}, @endif @if($member->presentAddressWord) Word: {{ $member->presentAddressWord->name_english }} @endif @endif
@if($member) @if($member->parmanent_address) {{ $member->parmanent_address }} @endif
@if($member->parmanentAddressDistrict) District: {{ $member->parmanentAddressDistrict->name_english }}, @endif @if($member->parmanentAddressThana) Thana: {{ $member->parmanentAddressThana->name_english }}, @endif @if($member->parmanentAddressUnion) Union: {{ $member->parmanentAddressUnion->name_english }}, @endif @if($member->parmanentAddressWord) Word: {{ $member->parmanentAddressWord->name_english }} @endif @endif
@if($member) @if($member->office_address) {{ $member->office_address }} @endif
@if($member->officeAddressDistrict) District: {{ $member->officeAddressDistrict->name_english }}, @endif @if($member->officeAddressThana) Thana: {{ $member->officeAddressThana->name_english }}, @endif @if($member->officeAddressUnion) Union: {{ $member->officeAddressUnion->name_english }}, @endif @if($member->officeAddressWord) Word: {{ $member->officeAddressWord->name_english }} @endif @endif
@if($member && count(@$member->teams)>0) {{ @$member->teams[0]->name }} @endif {{ @$member->refer_data->name }} {{ @$member->refer_data->user_id }}{{ @$member->remarks }}{{ date('d-m-Y', strtotime($member->created_at)) }}
@push('alljs') @endpush @endsection