Commit 8c453265 by Angel MAS

readme

parent b413cb71
...@@ -5,30 +5,39 @@ ...@@ -5,30 +5,39 @@
# Installation # Installation
- Run this in the terminal - Run this in the terminal
``` ```
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
``` ```
Onestartup\Crm\CrmListServiceProvider::class, Onestartup\Crm\CrmListServiceProvider::class,
``` ```
- Run migration - Run migration
``` ```
php artisan migrate php artisan migrate
``` ```
- add next lines to app/User.php - add next lines to app/User.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
``` ```
public function tracings() public function tracings()
{ {
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id'); return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
} }
``` ```
- for version 0.0.7 install plugin buttons datatable in base project - for version 0.0.7 install plugin buttons datatable in base project
...@@ -38,9 +47,10 @@ public function tracings() ...@@ -38,9 +47,10 @@ public function tracings()
- run serv - run serv
```php ```php
php artisan serve php artisan serve
``` ```
- test in this route how admin user - test in this route how admin user
```php ```php
http://localhost:8000/admin/crm http://localhost:8000/admin/crm
``` ```
\ No newline at end of file
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