@extends('admin.layouts.layout') @section('content')
@if (session()->has('success'))

  {{ session('success') }}

@endif
Displaying all Users
@forelse($users as $user) @empty @endforelse
Name Email Investments Reg date Country Phone Edit Delete
{{$user->fname.' '.$user->lname}} {{$user->email}} id)}}' class='btn btn-primary btn-block'> View investments {{$user->created_at->diffForHumans()}} {{$user->country}} {{$user->phone}} id)}}' class='btn btn-primary btn-block'>   Edit Plan
@csrf
@endsection