@extends('layouts.default') @section('content')
{{-- --}} {{-- --}} @foreach ($users as $key => $user) {{-- --}} @endforeach
No. UserRoleFirst Name Last Name Date of birth Hometown Neighborhood Works At Education Journey Location Social Media Actions Status User
{{ $key + 1 }}
{{ $user->name ?? null }} {{ $user->email ?? null }}
{{ $user->profile->first_name ?? null }} {{ $user->profile->last_name ?? null }} {{ $user->profile->date_of_birth ?? null }} {{ $user->profile->hometown ?? null }} {{ $user->profile->neighborhood ?? null }} {{ $user->profile->works_at ?? null }} {{ $user->profile->education ?? null }} {{ $user->profile->journey ?? null }} {{ $user->profile->location ?? null }}
{{ $user->status == 1 ? 'Active' : 'Deactive' }}
@stop @section('script') @endsection