@extends('member') @section('title', 'Members') @section('content')
{{-- --}} @foreach ($users as $user) @endforeach
ID Name Email Contact City Designation Action
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->contact ?? 'Not updated' }} {{ $user->posting_area }} {{ $user->designation }} More
@endsection