We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac98742 commit 89f0c9bCopy full SHA for 89f0c9b
config/config.php
@@ -10,6 +10,20 @@
10
base_path('app'),
11
],
12
13
+ /*
14
+ * If you want to ignore complete models or certain relations of a specific model,
15
+ * you can specify them here.
16
+ * To ignore a model completely, just add the fully qualified classname.
17
+ * To ignore only a certain relation of a model, enter the classname as the key
18
+ * and an array of relation names to ignore.
19
+ */
20
+ 'ignore' => [
21
+ // User::class,
22
+ // Post::class => [
23
+ // 'user'
24
+ // ]
25
+ ],
26
+
27
/*
28
* If true, all directories specified will be scanned recursively for models.
29
* Set this to false if you prefer to explicitly define each directory that should
0 commit comments