Commit 8c453265 by Angel MAS

readme

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