agenciafmd / admix-leads
Keep all your leads safe
Installs: 5 568
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- laravel/framework: 5.8.*
README
- Keep all your leads safe
Installation
composer require agenciafmd/admix-leads:v10.x-dev
Run the migrations
php artisan migrate
If you want to use the seeder, add on your database/seeders/DatabaseSeeder.php
use Agenciafmd\Leads\Database\Seeders\LeadTableSeeder; $this->call(LeadTableSeeder::class);
Usage
If you are using the agenciafmd/admix-postal
, all leads will be saved, without any configuration.
If not, you can use the Agenciafmd\Leads\Models\Lead
model to save your leads
Lead::query() ->create([ 'source' => 'site', 'name' => 'Irineu Martins Junior', 'email' => 'irineu@fmd.ag', 'phone' => '(17) 3353-2444', 'description' => 'Conteúdo do lead', ]);