You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This publish will create a `model.stub` that will be used by `php artisan make:model` to set up new models. You should use this on projects that will only have models backed by FileMaker.
78
78
79
79
## Alternatively, use new make command
80
-
Alternatively, you can use the new`make:fm-model` command. All options available to Laravel's native `make:model` command are also available to `make:fm-model` command.
80
+
Alternatively, you can use the default`make:model` command with a new `--filemaker` flag. All options available to Laravel's native `make:model` command are still available for use.
81
81
82
82
```shell
83
-
php artisan make:fm-model Model
83
+
php artisan make:model Model --filemaker
84
84
```
85
85
86
+
Note: If the `--filemaker` flag is not used, the model will be created as a standard Laravel model.
87
+
86
88
# Usage
87
89
With the package installed you can now have access to all the features of this package. There are a few different areas to configure.
0 commit comments