@extends('layouts.admin') @section('content') @if (session('success'))
@endif
User List
@if(count($userdata)>=1) @php $j=1; @endphp @foreach($userdata as $user) @php $j++; @endphp @endforeach @endif
Sr.No Name Email User Identification Phone Number User Type Photo Created Status Action
{{$j}} {{ucwords($user->name)}} {{$user->email}} {{$user->useridentification}} {{$user->phone_number}} @if($user->user_type == 1) Super admin @endif @if($user->user_type == 2) Stock manager @endif @if($user->user_type == 3) Store manager @endif @if($user->user_type == 4) Supplier @endif @if($user->user_type == 5) Inventory receiver @endif @if($user->user_type == 6) Inventory reviewer @endif @if ($user->image != "") image-1 @else profile Pic @endif Dec-31-1969 @if($user->status==1) Enable @else @endif
@endsection