@extends('admin.layout')
@section('title','Users list')
@section('page-css')
@stop
@section('content')
No. |
First Name |
Last Name |
Email |
Password |
Status |
Action |
@if(count($users)>0)
@foreach($users as $key=>$row)
{{$key+1}} |
{{$row->first_name}} |
{{$row->last_name}} |
{{$row->email}} |
{{$row->user_password}} |
@if($row->is_active=='Y')
Active
@else
De Active
@endif
|
|
@endforeach
@endif
@stop
@section('page-js')
@stop