@extends('layouts.app') @section('content')

Manage leads

Leads are simply new users that have not made any deposit.

Assign

Import leads from excel document. download sample document

@csrf
@foreach ($users as $list) @endforeach
Name Email Phone Status Date registered Assigned To Action
{{ $list->name }} {{ $list->email }} {{ $list->phone }} @if ($list->status == 'active') Active @else Inactive @endif {{ $list->created_at->toDayDateTimeString() }} @if ($list->tuser) {{ $list->tuser->firstName }} {{ $list->tuser->lastName }} @else Not assigned yet @endif Edit Status
@endsection @push('scripts') @endpush