@extends('admin.includes.masterpage-admin') @section('content')

Users


@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
@foreach($customers as $customer) @endforeach
Full Name Email Phone Country Campaigns Status Actions
{{$customer->name}} {{$customer->email}} {{$customer->phone}} {{$customer->country}} {{\App\Campaign::where('createdby',$customer->id)->count()}} @if($customer->status != 0) Active @else Banned @endif View Details @if($customer->status != 0) Ban @else Activate @endif
@stop @section('footer') @stop