Skip to content

Commit 088b229

Browse files
committed
add activity loggin package
1 parent 3650a69 commit 088b229

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

.env.example

+12
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,18 @@ DEFAULT_GRAVATAR_MAX_RATING=g
6060
DEFAULT_GRAVATAR_FORCE_DEFAULT=false
6161
DEFAULT_GRAVATAR_FORCE_EXTENSION=jpg
6262

63+
LARAVEL_LOGGER_DATABASE_CONNECTION=mysql
64+
LARAVEL_LOGGER_DATABASE_TABLE=laravel_logger_activity
65+
LARAVEL_LOGGER_MIDDLEWARE_ENABLED=true
66+
LARAVEL_LOGGER_USER_MODEL=App\Models\User
67+
LARAVEL_LOGGER_PAGINATION_ENABLED=true
68+
LARAVEL_LOGGER_PAGINATION_PER_PAGE=25
69+
LARAVEL_LOGGER_DATATABLES_ENABLED=false
70+
LARAVEL_LOGGER_DASHBOARD_MENU_ENABLED=true
71+
LARAVEL_LOGGER_DASHBOARD_DRILLABLE=true
72+
LARAVEL_LOGGER_LOG_RECORD_FAILURES_TO_FILE=true
73+
LARAVEL_LOGGER_FLASH_MESSAGE_BLADE_ENABLED=false
74+
6375
// NOTE: YOU CAN REMOVE THE KEY CALL IN app.blade.php IF YOU GET A POP UP AND DO NOT WANT TO SETUP A KEY FOR DEV
6476
# Google Maps API v3 Key - https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key
6577
GOOGLEMAPS_API_KEY=YOURGOOGLEMAPSkeyHERE

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ Homestead.json
3737
/storage/debugbar
3838
/storage/framework
3939
/storage/logs
40-
/storage/users
40+
/storage/users
41+
packages/

composer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
"socialiteproviders/generators": "^2.0",
2525
"socialiteproviders/instagram": "^3.0",
2626
"socialiteproviders/twitch": "^3.0",
27-
"socialiteproviders/youtube": "^3.0"
27+
"socialiteproviders/youtube": "^3.0",
28+
"jaybizzle/laravel-crawler-detect": "1.*",
29+
"jeremykenedy/laravel-logger": "^0.0.2"
2830
},
2931
"require-dev": {
3032
"filp/whoops": "~2.0",

routes/web.php

+8-6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@
1313
|
1414
*/
1515

16-
// Homepage Route
17-
Route::get('/', 'WelcomeController@welcome')->name('welcome');
16+
Route::group(['middleware' => 'activity'], function () {
17+
// Homepage Route
18+
Route::get('/', 'WelcomeController@welcome')->name('welcome');
19+
});
1820

1921
// Authentication Routes
2022
Auth::routes();
2123

2224
// Public Routes
23-
Route::group(['middleware' => 'web'], function () {
25+
Route::group(['middleware' => ['web', 'activity']], function () {
2426

2527
// Activation Routes
2628
Route::get('/activate', ['as' => 'activate', 'uses' => 'Auth\ActivateController@initial']);
@@ -38,7 +40,7 @@
3840
});
3941

4042
// Registered and Activated User Routes
41-
Route::group(['middleware' => ['auth', 'activated']], function () {
43+
Route::group(['middleware' => ['auth', 'activated', 'activity']], function () {
4244

4345
// Activation Routes
4446
Route::get('/activation-required', ['uses' => 'Auth\ActivateController@activationRequired'])->name('activation-required');
@@ -55,7 +57,7 @@
5557
});
5658

5759
// Registered, activated, and is current user routes.
58-
Route::group(['middleware'=> ['auth', 'activated', 'currentUser']], function () {
60+
Route::group(['middleware'=> ['auth', 'activated', 'currentUser', 'activity']], function () {
5961

6062
// User Profile and Account Routes
6163
Route::resource(
@@ -92,7 +94,7 @@
9294
});
9395

9496
// Registered, activated, and is admin routes.
95-
Route::group(['middleware'=> ['auth', 'activated', 'role:admin']], function () {
97+
Route::group(['middleware'=> ['auth', 'activated', 'role:admin', 'activity']], function () {
9698
Route::resource('/users/deleted', 'SoftDeletesController', [
9799
'only' => [
98100
'index', 'show', 'update', 'destroy',

0 commit comments

Comments
 (0)