@extends('admin.layouts.app') @push('style') {{-- --}} @endpush @section('pagetitlesection') @endsection @section('content')

No of Customers: {{ count($users) }}

{{-- ADD CUSTOMER --}}
{{-- --}} @forelse ($users as $data) @empty @endforelse
Name User Name Email Mobile Profile ImageAddressCreated On Status Action
{{ $data->first_name?$data->first_name:'---' }} {{ $data->username }} {{ $data->email }} {{ $data->mobile_number?$data->mobile_number:'---' }} Icon 01 {{ date('d-m-Y', strtotime($data->created_at)) }} @switch($data->is_active) @case(1) Active @break @case(0) Inactive @break @default @endswitch @switch($data->is_blocked) @case(1) Blocked @break @case(0) Unblocked @break @endswitch
No Data Yet
@endsection @push('scripts') @endpush