Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flexydial
/
hdfc
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
35c1481e
authored
2018-10-31 15:33:10 +0530
by
Gopal
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added faillogin file
1 parent
73ba1a1a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
application/resources/views/layout/module/dialer/faillogin.blade.php
application/resources/views/layout/module/dialer/faillogin.blade.php
0 → 100755
View file @
35c1481
<!--
<?php
$data
=
DB
::
table
(
"users"
)
->
select
(
"fullname"
,
"meta"
)
->
paginate
(
15
);
?>
<div class="container">
<h2>Fail Login Reports</h2>
<table class="table table-bordered">
<thead>
<tr>
<th>Firstname</th>
<th>Invalid Password Attempt</th>
</tr>
</thead>
<tbody>
@foreach($data as $data_key => $data_value)
<tr>
<td>
<?php
print_r
(
$data_value
->
fullname
)
?>
</td>
<td>
<?php
$invalid_count
=
json_decode
(
$data_value
->
meta
,
true
);
if
(
!
empty
(
$invalid_count
[
"ncnt"
]))
{
print_r
(
$invalid_count
[
"ncnt"
]);
}
?>
</td>
</tr>
@endforeach
</tbody>
</table>
{{ $data->links() }}
</div> -->
\ No newline at end of file
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment