Skip to content

Commit 0003396

Browse files
authored
Merge pull request #11 from binafy/add-views
[0.x] Add Views
2 parents b303408 + 3ecf930 commit 0003396

File tree

12 files changed

+406
-39
lines changed

12 files changed

+406
-39
lines changed
Lines changed: 80 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,81 @@
1-
<!doctype html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport"
6-
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8-
<title>Document</title>
9-
</head>
10-
<body>
1+
@extends('LaravelUserMonitoring::layouts.master')
112

12-
</body>
13-
</html>
3+
@section('title', 'Action Monitoring')
4+
5+
@section('content')
6+
<div class="mt-7 overflow-x-auto">
7+
<table class="w-full whitespace-nowrap">
8+
<tbody>
9+
@foreach ($actions as $action)
10+
<tr tabindex="0" class="focus:outline-none h-16 border border-gray-100 rounded">
11+
<td>
12+
<div class="flex items-center pl-5">
13+
<p class="text-base font-medium leading-none text-gray-700 mr-2">
14+
{{ $action->table_name }}
15+
</p>
16+
</div>
17+
</td>
18+
<td class="pl-24">
19+
<div class="flex items-center">
20+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
21+
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" />
22+
</svg>
23+
<p class="text-sm leading-none text-gray-600 ml-2">
24+
{{ $action->user->name ?? 'Guest User' }}
25+
</p>
26+
</div>
27+
</td>
28+
<td class="pl-5">
29+
<div class="flex items-center">
30+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
31+
<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 6h9.75M10.5 6a1.5 1.5 0 11-3 0m3 0a1.5 1.5 0 10-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-9.75 0h9.75" />
32+
</svg>
33+
<p class="text-sm leading-none text-gray-600 ml-2">
34+
{{ $action->action_type }}
35+
</p>
36+
</div>
37+
</td>
38+
<td class="pl-5">
39+
<div class="flex items-center">
40+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
41+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5" />
42+
</svg>
43+
<p class="text-sm leading-none text-gray-600 ml-2">
44+
{{ $action->ip }}
45+
</p>
46+
</div>
47+
</td>
48+
<td class="pl-5">
49+
<div class="flex items-center">
50+
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="30" height="30" viewBox="0 0 50 50">
51+
<path d="M 46 4.867188 L 4 10.117188 L 4 39.882813 L 46 45.132813 Z M 44 7.132813 L 44 24 L 25 24 L 25 9.507813 Z M 23 9.757813 L 23 24 L 6 24 L 6 11.882813 Z M 6 26 L 23 26 L 23 40.242188 L 6 38.117188 Z M 25 26 L 44 26 L 44 42.867188 L 25 40.492188 Z"></path>
52+
</svg>
53+
<p class="text-sm leading-none text-gray-600 ml-2">
54+
{{ $action->platform }}
55+
</p>
56+
</div>
57+
</td>
58+
<td class="pl-5">
59+
<button class="py-3 px-3 text-sm focus:outline-none leading-none text-blue-700 bg-blue-100 rounded">
60+
{{ $action->created_at->format('Y-m-d H:i') }}
61+
</button>
62+
</td>
63+
<td class="pl-4">
64+
<form method="post" action="{{ route('user-monitoring.actions-monitoring-delete', $action->id) }}">
65+
@csrf
66+
@method('DELETE')
67+
68+
<button class="focus:ring-2 focus:ring-offset-2 focus:ring-red-300 text-sm leading-none text-red-600 py-3 px-5 bg-red-100 rounded hover:bg-red-200 focus:outline-none" type="submit">
69+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
70+
<path stroke-linecap="round" stroke-linejoin="round" d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0" />
71+
</svg>
72+
</button>
73+
</form>
74+
</td>
75+
</tr>
76+
@endforeach
77+
</tbody>
78+
</table>
79+
{{ $actions->links() }}
80+
</div>
81+
@endsection
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
@extends('LaravelUserMonitoring::layouts.master')
2+
3+
@section('title', 'Authentication Monitoring')
4+
5+
@section('content')
6+
<div class="mt-7 overflow-x-auto">
7+
<table class="w-full whitespace-nowrap">
8+
<tbody>
9+
@foreach ($authentications as $authentication)
10+
<tr tabindex="0" class="focus:outline-none h-16 border border-gray-100 rounded">
11+
<td class="pl-24">
12+
<div class="flex items-center">
13+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
14+
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" />
15+
</svg>
16+
<p class="text-sm leading-none text-gray-600 ml-2">
17+
{{ $authentication->user->name ?? 'Guest User' }}
18+
</p>
19+
</div>
20+
</td>
21+
<td class="pl-5">
22+
<div class="flex items-center">
23+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
24+
<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 6h9.75M10.5 6a1.5 1.5 0 11-3 0m3 0a1.5 1.5 0 10-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-9.75 0h9.75" />
25+
</svg>
26+
<p class="text-sm leading-none text-gray-600 ml-2">
27+
{{ $authentication->action_type }}
28+
</p>
29+
</div>
30+
</td>
31+
<td class="pl-5">
32+
<div class="flex items-center">
33+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
34+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5" />
35+
</svg>
36+
<p class="text-sm leading-none text-gray-600 ml-2">
37+
{{ $authentication->ip }}
38+
</p>
39+
</div>
40+
</td>
41+
<td class="pl-5">
42+
<div class="flex items-center">
43+
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="30" height="30" viewBox="0 0 50 50">
44+
<path d="M 46 4.867188 L 4 10.117188 L 4 39.882813 L 46 45.132813 Z M 44 7.132813 L 44 24 L 25 24 L 25 9.507813 Z M 23 9.757813 L 23 24 L 6 24 L 6 11.882813 Z M 6 26 L 23 26 L 23 40.242188 L 6 38.117188 Z M 25 26 L 44 26 L 44 42.867188 L 25 40.492188 Z"></path>
45+
</svg>
46+
<p class="text-sm leading-none text-gray-600 ml-2">
47+
{{ $authentication->platform }}
48+
</p>
49+
</div>
50+
</td>
51+
<td class="pl-5">
52+
<button class="py-3 px-3 text-sm focus:outline-none leading-none text-blue-700 bg-blue-100 rounded">
53+
{{ $authentication->created_at->format('Y-m-d H:i') }}
54+
</button>
55+
</td>
56+
<td class="pl-4">
57+
<form method="post" action="{{ route('user-monitoring.authentications-monitoring-delete', $authentication->id) }}">
58+
@csrf
59+
@method('DELETE')
60+
61+
<button class="focus:ring-2 focus:ring-offset-2 focus:ring-red-300 text-sm leading-none text-red-600 py-3 px-5 bg-red-100 rounded hover:bg-red-200 focus:outline-none" type="submit">
62+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
63+
<path stroke-linecap="round" stroke-linejoin="round" d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0" />
64+
</svg>
65+
</button>
66+
</form>
67+
</td>
68+
</tr>
69+
@endforeach
70+
</tbody>
71+
</table>
72+
{{ $authentications->links() }}
73+
</div>
74+
@endsection
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<script src="https://cdn.tailwindcss.com"></script>
7+
8+
<title>{{ $title }} - @yield('title')</title>
9+
10+
@yield('style')
11+
<style>
12+
.checkbox:checked + .check-icon {
13+
display: flex;
14+
}
15+
</style>
16+
</head>
17+
<body>
18+
<div class="sm:px-6 w-full">
19+
<div class="px-4 md:px-10 py-4 md:py-7">
20+
<div class="flex items-center justify-between">
21+
<p class="focus:outline-none text-base sm:text-lg md:text-xl lg:text-2xl font-bold leading-normal text-gray-800" tabindex="0">
22+
{{ $title }} 📈
23+
</p>
24+
</div>
25+
</div>
26+
<div class="bg-white py-4 md:py-7 px-4 md:px-8 xl:px-10">
27+
<div class="sm:flex items-center justify-between">
28+
<div class="flex items-center">
29+
<a class="rounded-full focus:outline-none focus:ring-2 focus:bg-indigo-50 focus:ring-indigo-800"
30+
href="{{ route('user-monitoring.visits-monitoring') }}">
31+
<div class="py-2 px-8 text-indigo-700 rounded-full hover:text-indigo-700 hover:bg-indigo-100
32+
{{ request()->routeIs('user-monitoring.visits-monitoring') ? 'bg-indigo-100' : '' }}">
33+
<p>Visit Monitoring</p>
34+
</div>
35+
</a>
36+
<a class="rounded-full focus:outline-none focus:ring-2 focus:bg-indigo-50 focus:ring-indigo-800 ml-4 sm:ml-8"
37+
href="{{ route('user-monitoring.actions-monitoring') }}">
38+
<div class="py-2 px-8 text-indigo-700 rounded-full hover:text-indigo-700 hover:bg-indigo-100
39+
{{ request()->routeIs('user-monitoring.visits-monitoring') ? 'bg-indigo-100' : '' }}">
40+
<p>Action Monitoring</p>
41+
</div>
42+
</a>
43+
<a class="rounded-full focus:outline-none focus:ring-2 focus:bg-indigo-50 focus:ring-indigo-800 ml-4 sm:ml-8"
44+
href="{{ route('user-monitoring.authentications-monitoring') }}">
45+
<div class="py-2 px-8 text-indigo-700 rounded-full hover:text-indigo-700 hover:bg-indigo-100
46+
{{ request()->routeIs('user-monitoring.visits-monitoring') ? 'bg-indigo-100' : '' }}">
47+
<p>Authentication Monitoring</p>
48+
</div>
49+
</a>
50+
</div>
51+
<div>
52+
<a href="https://github.com/binafy/laravel-user-monitoring"
53+
class="focus:ring-2 focus:ring-offset-2 focus:ring-indigo-600 mt-4 sm:mt-0
54+
inline-flex items-start justify-start px-6 py-3 bg-indigo-700 hover:bg-indigo-600
55+
focus:outline-none rounded items-center">
56+
<p class="text-sm font-medium leading-none text-white mr-2">
57+
Github
58+
</p>
59+
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="24" height="24" viewBox="0 0 24 24" style="fill:#FFFFFF;">
60+
<path d="M10.9,2.1c-4.6,0.5-8.3,4.2-8.8,8.7c-0.5,4.7,2.2,8.9,6.3,10.5C8.7,21.4,9,21.2,9,20.8v-1.6c0,0-0.4,0.1-0.9,0.1 c-1.4,0-2-1.2-2.1-1.9c-0.1-0.4-0.3-0.7-0.6-1C5.1,16.3,5,16.3,5,16.2C5,16,5.3,16,5.4,16c0.6,0,1.1,0.7,1.3,1c0.5,0.8,1.1,1,1.4,1 c0.4,0,0.7-0.1,0.9-0.2c0.1-0.7,0.4-1.4,1-1.8c-2.3-0.5-4-1.8-4-4c0-1.1,0.5-2.2,1.2-3C7.1,8.8,7,8.3,7,7.6C7,7.2,7,6.6,7.3,6 c0,0,1.4,0,2.8,1.3C10.6,7.1,11.3,7,12,7s1.4,0.1,2,0.3C15.3,6,16.8,6,16.8,6C17,6.6,17,7.2,17,7.6c0,0.8-0.1,1.2-0.2,1.4 c0.7,0.8,1.2,1.8,1.2,3c0,2.2-1.7,3.5-4,4c0.6,0.5,1,1.4,1,2.3v2.6c0,0.3,0.3,0.6,0.7,0.5c3.7-1.5,6.3-5.1,6.3-9.3 C22,6.1,16.9,1.4,10.9,2.1z"></path>
61+
</svg>
62+
</a>
63+
</div>
64+
</div>
65+
@yield('content')
66+
</div>
67+
</div>
68+
</body>
69+
</html>

resources/views/visit-monitoring/index.blade.php

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)