@extends('admin.admin_master') @section('content-header', $page_header) @section('content')
@if ($list) @foreach ($list as $item) @endforeach @endif
S.No UserName Name Email Mobile No Last Login Date Created Date Admin Roles Status Action
{{ $count++ }} {{ $item->username }} {{ $item->name }} {{ $item->email }} {{ $item->phone_no }} {{ $item->lastlogin }} {{ $item->created_at }} {{ $item->admingroup->title }} @if ($item->status == '1') {!! ACTIVE_STATUS !!} @else {!! INACTIVE_STATUS !!} @endif {!! EDIT_ICON !!} @if ($item->id != '1')   |   Delete @endif
@endsection