@extends("layouts.dashboard.app") @section("page-title") Admins @endSection @section("page-nav-title")

{{__('Admins')}}

{{__('Control and view all App Users')}}

@endsection @section("content") @include("layouts.main-parts.page-message")
{{__('Export As Excel')}}
@foreach($users as $user) @if($user->username == "DigisolAdmin") @continue @endif @endforeach
#ID {{__('Full name')}} {{__('Username')}} {{__('Email')}} {{__('Email Verified')}} {{__('Created at')}} {{__('Updated at')}} {{__('Control')}}
{{++$count}} {{$user->full_name}} {{$user->username}} {{$user->email}} {{!empty($user->email_verified_at) ? "Yes" : "No"}} @if($user->created_at) {{$user->created_at->diffForHumans()}} @endif @if($user->updated_at) {{$user->updated_at->diffForHumans()}} @endif
id)}}" method="post" id="delete{{$user->id}}" style="display: none" data-swal-title="Delete Admin" data-swal-text="{{__('Are Your Sure To Delete This Admin ?')}}" data-yes="Yes" data-no="No" data-success-msg="{{__('the Admin has been deleted succssfully')}}">@csrf @method("delete")
@endsection @section("scripts") @endsection