Commit b413cb71 by Angel MAS

readme

parent 6a78cb5a
...@@ -5,26 +5,26 @@ ...@@ -5,26 +5,26 @@
# Installation # Installation
- Run this in the terminal - Run this in the terminal
```php ```
composer require onestartup/crm composer require onestartup/crm
``` ```
- after add the ServiceProvider to the providers array in config/app.php - after add the ServiceProvider to the providers array in config/app.php
```php ```
Onestartup\Crm\CrmListServiceProvider::class, Onestartup\Crm\CrmListServiceProvider::class,
``` ```
- Run migration - Run migration
```php ```
php artisan migrate php artisan migrate
``` ```
- add next lines to app/User.php - add next lines to app/User.php
```php ```
public function tracings() public function tracings()
{ {
return $this->hasMany('Onestartup\Crm\Tracing', 'user_id'); return $this->hasMany('Onestartup\Crm\Tracing', 'user_id');
} }
``` ```
- add next lines to app/Interested.php - add next lines to app/Interested.php
```php ```
public function tracings() public function tracings()
{ {
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id'); 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