From 346f1b61f5f0cf08beefb4211bd47f0c11fdce68 Mon Sep 17 00:00:00 2001 From: Milwad Khosravi Date: Sun, 2 Jun 2024 11:55:06 +0330 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6655d47..7f0d489 100644 --- a/README.md +++ b/README.md @@ -149,9 +149,13 @@ php artisan crud:query-module products Product --id-controller When you add `--id-controller` option, the `Laravel Crod` create crud functions without [Route Model Binding](https://laravel.com/docs/routing#route-model-binding) in controller. After you can see `Laravel Crod` added query to service, repository, controller, model, ... for your module. + ## Custom path -You can custom file path in config file. ```config/laravel-crod.php``` +You can custom file path in config file. `````` + +With `Laravel Crod` config, you can customize the commands, for example you want to set the route file name. +This config file exists in `config/laravel-crod.php`: ```php Milwad Khosravi