diff --git a/languages/laravel.gitignore b/languages/laravel.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..1056f66a3ae0f94e25b780f872ea93188c21c5a0
--- /dev/null
+++ b/languages/laravel.gitignore
@@ -0,0 +1,46 @@
+###
+ # GitIgnore file for Laravel Framework projects.
+ # See https://git-scm.com/docs/gitignore for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/gitignore
+ # Version 1.0
+ ##
+
+
+# Ignore environment settings.
+.env/
+.idea/
+.venv/
+.vs/
+.vscode/
+env/
+idea/
+venv/
+vs/
+vscode/
+
+
+# Ignore temporary files.
+[Tt]emp/
+[Tt]empfiles/
+[Tt]emp_files/
+*.tmp
+*.temp
+
+
+# Ignore logfiles.
+[Ll]og/
+[Ll]ogs/
+*.log
+*.log.*
+
+
+# Ignore development-related Laravel files.
+node_modules/
+public/storage/
+storage/
+vendor/
+.env
+
+
+# Project-specific file ignores go here.