You will find a configuration file located at config/crudgenerator.php
When you want to use your own custom template files, then you should turn it on and it will use the files from resources/crud-generator/
'custom_template' => false,
You can change your template path easily, the default path is resources/crud-generator/
.
'path' => base_path('resources/crud-generator/'),
When generating CRUD or the views, the generator will assume the column number to show for the CRUD grid or detail automatically from the config. You can change it.
'view_columns_number' => 3,
Set your delimiter which you use for your template vars. The default delimiter is %%
in everywhere.
'custom_delimiter' => ['%%', '%%'],
Note: You should use the delimiter same as yours template files.
This configuration will help you to use any custom template vars in the views index
, form
, create
, edit
, show
'dynamic_view_template' => [],