agenciafmd/admix-leads

There is no license information available for the latest version (1.0.0) of this package.

Keep all your leads safe

1.0.0 2019-11-04 20:17 UTC

This package is auto-updated.

Last update: 2025-01-23 12:33:41 UTC


README

Área Administrativa

Downloads Licença

  • 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',
    ]);