File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,28 @@ Step 6: Run database seeder:
5353php artisan db:seed --class=LaravelCrmTablesSeeder
5454```
5555
56+ Step 7: Add an email address for the user who will be the crm owner in the config file:
57+
58+ After publishing the package assets a configuration file will be located at <code >config/laravel-crm.php</code >
59+
60+ ``` php
61+
62+ return [
63+
64+ 'crm_owner' => '
[email protected] ',
65+
66+ 'route_prefix' => 'crm',
67+
68+ 'route_middleware' => ['web'],
69+
70+ 'db_table_prefix' => 'crm_',
71+
72+ 'encrypt_db_fields' => true,
73+
74+ ];
75+
76+ ```
77+
5678## Usage
5779
5880Access the crm at http://your-project-url/crm
@@ -86,7 +108,7 @@ Participate in the [discord community](https://discord.gg/rygVyyGSHj)
86108
87109## Contributing
88110
89- Please see [ CONTRIBUTING] ( ../ CONTRIBUTING.md) for details.
111+ Please see [ CONTRIBUTING] ( CONTRIBUTING.md ) for details.
90112
91113### Security
92114
You can’t perform that action at this time.
0 commit comments