|
161 | 161 | | Base Files |
162 | 162 | |-------------------------------------------------------------------------- |
163 | 163 | | |
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 |
165 | 165 | | when you generate them again they will be replaced by new ones. |
166 | 166 | | You may want to customize your models and, at the same time, be |
167 | 167 | | able to generate them as your tables change. For that, you |
|
211 | 211 | | TRUE: Schema name will be prepended on the table |
212 | 212 | | FALSE:Table name will be set without schema name. |
213 | 213 | | 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 |
215 | 215 | */ |
216 | 216 |
|
217 | 217 | 'qualified_tables' => false, |
|
253 | 253 | | Casts |
254 | 254 | |-------------------------------------------------------------------------- |
255 | 255 | | |
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. |
259 | 259 | | |
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 |
261 | 261 | | assigned. We have defined some fields for you. Feel free to |
262 | 262 | | modify them to fit your needs. |
263 | 263 | | |
|
281 | 281 |
|
282 | 282 | 'except' => [ |
283 | 283 | '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', |
284 | 294 | ], |
285 | 295 |
|
286 | 296 | /* |
|
416 | 426 | |-------------------------------------------------------------------------- |
417 | 427 | | Move $fillable property to base files |
418 | 428 | |-------------------------------------------------------------------------- |
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 |
420 | 430 | | if you want the $fillable to be generated in base files |
421 | 431 | | |
422 | 432 | */ |
|
0 commit comments