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

{{ isset($title)?$title:'Reports' }}

All Customers

{{number_format(round($all_customers_count,2))}}

Web

{{number_format(round($web_customers_count,2))}}

App

{{number_format($app_customers_count)}}

@php $i = 1; @endphp @if(isset($customers) && !empty($customers)) @foreach($customers as $row) @endforeach @endif
# Name Email Mobile Date Status
{{$i++}} {{ucwords($row->name)}} {{$row->email}} {{$row->mobile_number}} {{date('d-M-Y h:i A', strtotime($row->created_at))}}
{{date('h:i A', strtotime($row->created_at))}}
@if($row->status == 1) Active @else Inactive @endif
@section('js') @endsection @endsection