agenciafmd/admix-leads

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

Keep all your leads safe

Installs: 6 340

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/agenciafmd/admix-leads

1.0.0 2019-11-04 20:17 UTC

This package is auto-updated.

Last update: 2025-10-04 14:46:04 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',
    ]);