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

Users

@if (\Session::has('success'))
  • {!! \Session::get('success') !!}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(request()->has('start_date')) @endif
@if($users) @foreach($users as $user) @endforeach @endif
Sr. No Name Email Phone Number Created On Status Actions
{{$i}} {{ucfirst($user->name ?? 'N/A')}} {{$user->email ?? 'N/A'}} {{ $user->country_code ? $user->country_code : 'N/A' }}{{ $user->phone ? $user->phone : '' }} {{ \Carbon\Carbon::parse($user->created_at)->format('Y-m-d') }}
@csrf
@endsection