@extends('layouts.master') @section('title', __('index.users')) @section('action', __('index.lists')) @section('button') {{ __('index.add_user') }} @endsection @section('main-content') @include('admin.section.flash_message') @include('admin.users.common.breadcrumb') {{ __('index.user_list') }} # {{ __('index.full_name') }} {{ __('index.email') }} {{ __('index.is_active') }} {{ __('index.action') }} @forelse($admins as $key => $value) {{ ucfirst($value->name) }} {{ $value->email }} is_active == 1 ? 'checked' : '' }}> @if($value->id == auth('admin')->user()->id) {{ __('index.edit_detail') }} @endif @if($value->id != auth('admin')->user()->id || $value->id != 1) {{ __('index.delete_user') }} @endif @if($value->id == auth('admin')->user()->id) {{ __('index.change_password') }} @endif @empty {{ __('index.no_records_found') }} @endforelse {{ $admins->appends($_GET)->links() }} @include('admin.users.common.password') @endsection @section('scripts') @include('admin.users.common.scripts') @endsection
{{ __('index.no_records_found') }}