Skip to content

Commit cd266d4

Browse files
committed
Add few tables on the exclude array, Fix some typo errors
1 parent 521f6aa commit cd266d4

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

config/models.php

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
| Base Files
162162
|--------------------------------------------------------------------------
163163
|
164-
| By default, your models will be generated in your models path, but
164+
| By default, your models will be generated in your models' path, but
165165
| when you generate them again they will be replaced by new ones.
166166
| You may want to customize your models and, at the same time, be
167167
| able to generate them as your tables change. For that, you
@@ -211,7 +211,7 @@
211211
| TRUE: Schema name will be prepended on the table
212212
| FALSE:Table name will be set without schema name.
213213
| NULL: Table name will follow laravel pattern,
214-
| i.e if class name(plural) matches table name, then table name will not be added
214+
| i.e. if class name(plural) matches table name, then table name will not be added
215215
*/
216216

217217
'qualified_tables' => false,
@@ -253,11 +253,11 @@
253253
| Casts
254254
|--------------------------------------------------------------------------
255255
|
256-
| You may want to specify which of your table fields should be casted as
257-
| something different than a string. For instance, you may want a
258-
| text field be casted as an array or and object.
256+
| You may want to specify which of your table fields should be cast as
257+
| something different from a string. For instance, you may want a
258+
| text field be cast as an array or and object.
259259
|
260-
| You may define column patterns which will be casted using the value
260+
| You may define column patterns which will be cast using the value
261261
| assigned. We have defined some fields for you. Feel free to
262262
| modify them to fit your needs.
263263
|
@@ -281,6 +281,16 @@
281281

282282
'except' => [
283283
'migrations',
284+
'failed_jobs',
285+
'password_resets',
286+
'personal_access_tokens',
287+
'notifications',
288+
'nova_field_attachments',
289+
'nova_notifications',
290+
'nova_pending_field_attachments',
291+
'telescope_entries',
292+
'telescope_entries_tags',
293+
'telescope_monitoring',
284294
],
285295

286296
/*
@@ -416,7 +426,7 @@
416426
|--------------------------------------------------------------------------
417427
| Move $fillable property to base files
418428
|--------------------------------------------------------------------------
419-
| When base_files is true you can set fillable_in_base_files to true
429+
| When base_files is true you can set fillable_in_base_files to true
420430
| if you want the $fillable to be generated in base files
421431
|
422432
*/

0 commit comments

Comments
 (0)