@extends('admin.includes.masterpage-admin') @section('content')
| User ID# | {{$customer->id}} | |
|---|---|---|
| Account Status: | @if($customer->status != 0)Active | @elseBanned | @endif
| User Name: | {{$customer->name}} | |
| User Email: | {{$customer->email}} | |
| User Phone: | {{$customer->phone}} | |
| Country: | {{$customer->country}} | |
| Campaign Created: | {{\App\Campaign::where('createdby',$customer->id)->count()}} | |
| Joined: | {{$customer->created_at->diffForHumans()}} |