Skip to content

Commit 394c7f4

Browse files
committed
Updated readme
1 parent 75a6541 commit 394c7f4

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,28 @@ Step 6: Run database seeder:
5353
php 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

5880
Access 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

0 commit comments

Comments
 (0)