onestartup/crm

record management with tracking log


License
Apache-2.0

Documentation

Package test OneStartup

onestartup/crm is a module to manipulate the information that arrives through the forms of our project

Installation

  • Run this in the terminal
composer require onestartup/crm
  • after add the ServiceProvider to the providers array in config/app.php
Onestartup\Crm\CrmListServiceProvider::class,
  • Run migration
php artisan migrate
  • add next lines to app/User.php
public function tracings()
{
    return $this->hasMany('Onestartup\Crm\Tracing', 'user_id');
}
  • add next lines to app/Interested.php
public function tracings()
{
    return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
}
  • run serv
php artisan serve
  • test in this route how admin user
http://localhost:8000/admin/crm