|
@@ -0,0 +1,78 @@
|
|
|
+@extends('layouts.app')
|
|
|
+
|
|
|
+@section('content')
|
|
|
+ <div class="container">
|
|
|
+ <div class="row justify-content-center">
|
|
|
+ <div class="col-md-12">
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header d-flex flex-row">
|
|
|
+ <div class="flex-grow-1 text-primary text-uppercase font-weight-bold">
|
|
|
+ {{ __('ui.panelC') }}
|
|
|
+ </div>
|
|
|
+ @auth
|
|
|
+ @if(Auth::user()->isAdmin)
|
|
|
+ <div class="btn-group">
|
|
|
+ <a href="{{route('home')}}" class="btn btn-sm btn-outline-primary text-right">
|
|
|
+ <i class="fas fa-walking"></i>
|
|
|
+ {{ __('ui.back_catlog') }}
|
|
|
+ </a>
|
|
|
+ <a href="{{route('ushutdown')}}" class="btn btn-sm btn-outline-primary text-right">
|
|
|
+ <i class="fas fa-user-slash"></i>
|
|
|
+ {{ __('ui.disable_all') }}
|
|
|
+ </a>
|
|
|
+ <a href="{{route('ugreen')}}" class="btn btn-sm btn-outline-primary text-right">
|
|
|
+ <i class="fas fa-user"></i>
|
|
|
+ {{ __('ui.allow_all') }}
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ @endauth
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="card-body">
|
|
|
+ @if (session('status'))
|
|
|
+ <div class="alert alert-success" role="alert">
|
|
|
+ {{ session('status') }}
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ @guest
|
|
|
+ <div class="alert alert-danger">{{ __('ui.login_req') }}</div>
|
|
|
+ @else
|
|
|
+
|
|
|
+ <table class="table table-bordered">
|
|
|
+ <thead class="thead-dark">
|
|
|
+ <tr>
|
|
|
+ <th scope="col">{{__('ui.tb_uname')}}</th>
|
|
|
+ <th scope="col" class="controls col-sm-1">{{__('ui.tb_ctrl')}}</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @foreach($user_list as $user)
|
|
|
+ @if(!$user->isAdmin)
|
|
|
+ <tr>
|
|
|
+ <td style="text-align: left; @if(!$user->isEnabled) text-decoration:line-through @endif">
|
|
|
+ {{$user->name}}
|
|
|
+ </td>
|
|
|
+ <td class="controls">
|
|
|
+ <div class="btn-group">
|
|
|
+ <a class="btn btn-sm btn-outline-primary play_btn"
|
|
|
+ href="{{route('uswitch', $user->id)}}">
|
|
|
+ <i class="fas @if(!$user->isEnabled)fa-user-slash @else fa-user @endif"></i>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+ @endforeach
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+
|
|
|
+ @endguest
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+@endsection
|