@extends('layout.admin.master') @section('lib-css') @endsection @push('custom-css') @endpush @section('content')

System User - {{$users->count()}}

@if($users->count()>0) @foreach($users as $user) @endforeach @endif
Name Email Mobile Brnach Role Registered Since Action
{{$user->name ?? '--'}} {{$user->email ?? '--'}} {{$user->mobile_no ?? '--'}} {{$user->branch != '' ? $user->branch : '--' ?? '--'}} @if($user->getRoleNames()->count()) {{$user->getRoleNames()[0]}} @endif {{$user->created_at ?? ''}} Edit @include('User::system.edit')
{{ csrf_field() }} {{ method_field('DELETE') }}
@include('User::system.create') @endsection @section('lib-js') @endsection