@extends('layouts.fixed') @section('title','Users') @section('content')

Manage Users

(Search by company name email id)


{{--list start --}}
Shift Group List
@php $i = 1; @endphp @foreach($users as $user) @endforeach
Select Status ID Name Email Role Member Since Actions
@if($user->status == 1) @else @endif {{ $user->id }} {{ $user->name }} {{ $user->email }} @foreach($user->roles as $role) {{ $role->name }} @endforeach {{ $user->created_at->diffForHumans() }} {{ Form::open(['action'=>['UserController@destroy',$user->id],'method'=>'delete','onsubmit'=>'return confirmDelete()']) }}     {{ Form::close() }}
{{--list end--}}
Showing {{ $users->firstItem() }} to {{ $users->lastItem() }} of {{ $users->total() }}
@stop @section('script') @stop