Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.x] Add alert to controllers #45

Merged
merged 3 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions resources/views/layouts/master.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ class="focus:ring-2 focus:ring-offset-2 focus:ring-indigo-600 mt-4 sm:mt-0
</a>
</div>
</div>

@if(session()->has('message'))
<div class="flex items-center bg-blue-500 text-white text-sm font-bold px-4 py-3" role="alert">
<svg class="fill-current w-4 h-4 mr-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M12.432 0c1.34 0 2.01.912 2.01 1.957 0 1.305-1.164 2.512-2.679 2.512-1.269 0-2.009-.75-1.974-1.99C9.789 1.436 10.67 0 12.432 0zM8.309 20c-1.058 0-1.833-.652-1.093-3.524l1.214-5.092c.211-.814.246-1.141 0-1.141-.317 0-1.689.562-2.502 1.117l-.528-.88c2.572-2.186 5.531-3.467 6.801-3.467 1.057 0 1.233 1.273.705 3.23l-1.391 5.352c-.246.945-.141 1.271.106 1.271.317 0 1.357-.392 2.379-1.207l.6.814C12.098 19.02 9.365 20 8.309 20z"/></svg>
<p>{{ session()->get('message') }}</p>
</div>
@endif

@yield('content')
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/Controllers/ActionMonitoringController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public function destroy(int $id)
->where('id', $id)
->delete();

return to_route('user-monitoring.actions-monitoring');
return to_route('user-monitoring.actions-monitoring')->with([
'message' => 'The action has been deleted.',
]);
}
}
4 changes: 3 additions & 1 deletion src/Controllers/AuthenticationMonitoringController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public function destroy(int $id)
->where('id', $id)
->delete();

return to_route('user-monitoring.authentications-monitoring');
return to_route('user-monitoring.authentications-monitoring')->with([
'message' => 'The action has been deleted.',
]);
}
}
4 changes: 3 additions & 1 deletion src/Controllers/VisitMonitoringController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public function destroy(int $id)
->where('id', $id)
->delete();

return to_route('user-monitoring.visits-monitoring');
return to_route('user-monitoring.visits-monitoring')->with([
'message' => 'The action has been deleted.',
]);
}
}