@extends('layouts.AdminLTE.index') @section('icon_page', 'user') @section('title', 'Users') @section('menu_pagina')
  • Add
  • Permissions
  • @endsection @section('content')
    @foreach ($users as $user) @if ($user->id != 1) @endif @endforeach
    Name E-mail Status Created Actions
    @if ($user->isOnline()) @else @endif {{ $user->name }} {{ $user->email }} @if ($user->active == true) Active @else Inactive @endif {{ $user->created_at->format('d/m/Y H:i') }} @if (Auth::user()->can('root-dev', '')) @endif
    Name E-mail Status Created Actions
    {{ $users->links() }}
    @endsection