@extends('layouts.main') @section('title', 'User List') @section('content')
@csrf

મુખ્ય સભ્યની વિગત

Member Photo
Change Image
@php $mainEn = $data['main_en_user']; $mainGu = $data['main_gu_user']; @endphp @php $phoneFormatted2 = isset($mainEn->phoneno2) ? substr($mainEn->phoneno2, 0, 5) . ' ' . substr($mainEn->phoneno2, 5) : ''; @endphp @php $phoneFormatted1 = isset($mainEn->phoneno1) ? substr($mainEn->phoneno1, 0, 5) . ' ' . substr($mainEn->phoneno1, 5) : ''; @endphp @foreach ([['surname', 'અટક'], ['name', 'નામ'], ['father_name', 'પિતાનું નામ'], ['profession', 'વ્યવસાય'], ['house_no', 'ઘર નંબર'], ['society', 'સોસાયટી'], ['village', 'ગામ'], ['subdistrict', 'તાલુકો'], ['district', 'જિલ્લો'], ['city', 'શહેર'], ['near_place', 'નજીકનુ ઓળખી શકાય એવું સ્થળ']] as [$field, $label])
@endforeach
@foreach($data['family_en_user'] as $key => $value) @php $gu_value = $data['family_gu_user'][$key] ?? null; @endphp
@csrf
સભ્યની વિગત {{ $key + 1 }}
Member Photo
Change Image
@php $phoneFormatted = isset($value->phoneno1) ? substr($value->phoneno1, 0, 5) . ' ' . substr($value->phoneno1, 5) : ''; @endphp
@endforeach
@endsection @section('script') @endsection