Commit b413cb71 by Angel MAS

readme

parent 6a78cb5a
......@@ -5,26 +5,26 @@
# Installation
- Run this in the terminal
```php
```
composer require onestartup/crm
```
- after add the ServiceProvider to the providers array in config/app.php
```php
```
Onestartup\Crm\CrmListServiceProvider::class,
```
- Run migration
```php
```
php artisan migrate
```
- add next lines to app/User.php
```php
```
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'user_id');
}
```
- add next lines to app/Interested.php
```php
```
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment