+ }
+
+ /**
+ * Check if the current user has a permission or bypass if the provided user
+ * id matches the current user.
+ */
+ protected function checkPermissionOrCurrentUser(string $permission, int $userId): void
+ {
+ $this->checkPermissionOr($permission, function () use ($userId) {
+ return $userId === user()->id;
+ });
+ }
+
+ /**
+ * Send back a json error message.
+ */
+ protected function jsonError(string $messageText = "", int $statusCode = 500): JsonResponse
+ {
+ return response()->json(['message' => $messageText, 'status' => 'error'], $statusCode);
+ }
+
+ /**
+ * Create a response that forces a download in the browser.
+ */
+ protected function downloadResponse(string $content, string $fileName): Response
+ {
+ return response()->make($content, 200, [
+ 'Content-Type' => 'application/octet-stream',
+ 'Content-Disposition' => 'attachment; filename="' . $fileName . '"'
+ ]);
+ }
+
+ /**
+ * Show a positive, successful notification to the user on next view load.
+ */
+ protected function showSuccessNotification(string $message): void
+ {
+ session()->flash('success', $message);
+ }