@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")
@foreach($users as $user) @if(!$user->is_admin) @endif @endforeach
#ID Full name Username Email Email Verified Created at Updated at Control
{{$user->id}} {{$user->full_name}} {{$user->username}} {{$user->email}} @if(!empty($user->email_verified_at)) {{__('activated')}} @else $user->id])}}" class="btn btn-danger"> {{__("Activation")}} @endif {{$user->created_at->diffForHumans()}} {{$user->updated_at->diffForHumans()}}
@endsection @section("scripts") @endsection