Skip to content

Commit 408821f

Browse files
committed
enable searches and filters in all resources
1 parent feffa02 commit 408821f

File tree

8 files changed

+129
-88
lines changed

8 files changed

+129
-88
lines changed

.editorconfig

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,19 @@ root = true
33
[*]
44
charset = utf-8
55
end_of_line = lf
6-
indent_size = 4
7-
indent_style = space
86
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
99
trim_trailing_whitespace = true
1010

1111
[*.md]
1212
trim_trailing_whitespace = false
1313

1414
[*.{yml,yaml}]
15-
indent_size = 2
15+
indent_size = 2
16+
17+
[*.json]
18+
indent_size = 4
19+
20+
[docker-compose.yml]
21+
indent_size = 4

.gitattributes

+5-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
1-
# Path-based git attributes
2-
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3-
4-
# Ignore all test and documentation with "export-ignore".
5-
/.github export-ignore
6-
/.gitattributes export-ignore
7-
/.gitignore export-ignore
8-
/phpunit.xml.dist export-ignore
9-
/art export-ignore
10-
/docs export-ignore
11-
/tests export-ignore
12-
/.editorconfig export-ignore
13-
/.php_cs.dist.php export-ignore
14-
/psalm.xml export-ignore
15-
/psalm.xml.dist export-ignore
16-
/testbench.yaml export-ignore
17-
/UPGRADING.md export-ignore
18-
/phpstan.neon.dist export-ignore
19-
/phpstan-baseline.neon export-ignore
1+
* text=auto
2+
*.css linguist-vendored
3+
*.scss linguist-vendored
4+
*.js linguist-vendored
5+
CHANGELOG.md export-ignore

.gitignore

+8-9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
/public/hot
33
/public/storage
44
/storage/*.key
5+
/vendor
6+
/build
7+
/vendor/.idea
8+
/bootstrap/cache
59
.env
610
.env.backup
711
.phpunit.result.cache
@@ -10,12 +14,7 @@ Homestead.json
1014
Homestead.yaml
1115
npm-debug.log
1216
yarn-error.log
13-
.php-cs-fixer.cache
14-
.idea
15-
build
16-
coverage
17-
phpunit.xml
18-
phpstan.neon
19-
testbench.yaml
20-
vendor
21-
node_modules
17+
/.idea
18+
/.vscode
19+
/pkg
20+
.DS_Store

composer.lock

+48-49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/lang/ar.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"name": "الإسم",
55
"desc": "الوصف",
66
"ordering": "الترتيب",
7-
"is_active": "مفعل؟",
7+
"is active": "مفعل؟",
8+
"Inactive": "غير مفعل؟",
89
"slug": "الاختصار",
910
"logo": "الشعار",
1011
"Letter": "رسالة",

resources/lang/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "name",
55
"desc": "desc",
66
"ordering": "ordering",
7-
"is_active": "is active",
7+
"is active": "is active",
88
"slug": "slug",
99
"logo": "logo",
1010
"Letter": "Letter",

0 commit comments

Comments
 (0)