public function run()
 {
     $brokerage = new Brokerage();
     $brokerage->brokerage_name = 'Texas Premier Realty';
     $brokerage->brokerage_address = '3834 Deerfield Drive';
     // $brokerage->brokerage_unit_suite    = ''; //can be null
     $brokerage->brokerage_city = 'San Antonio';
     $brokerage->brokerage_state = 'TX';
     $brokerage->brokerage_zip = '78218';
     $brokerage->brokerage_phone_number = '210.844.8683';
     $brokerage->brokerage_email = '*****@*****.**';
     // $brokerage->brokerage_logo          = '';  //can be null
     $brokerage->broker_id = Broker::findorFail(1)->id;
     $brokerage->save();
 }
Esempio n. 2
0
 public function run()
 {
     $agent = new Agent();
     $agent->agent_first_name = 'Leticia';
     $agent->agent_last_name = 'Fuentes';
     $agent->agent_phone_number = '210.213.9803';
     $agent->agent_email = '*****@*****.**';
     $agent->agent_photo = '/img/agents/lettyfuentes.jpg';
     $agent->agent_facebook = 'https://www.facebook.com/AlamoCityHomes';
     $agent->agent_linkedin = 'https://www.linkedin.com/in/lettyfuentes';
     $agent->agent_twitter = 'https://twitter.com/lettyfuentes5';
     $agent->agent_youtube = 'https://www.youtube.com/user/AlamoCityDreamoHomes';
     $agent->agent_password = $_ENV['AGENT_PASS'];
     // $agent->agent_listing_leads   = ''  //can be null
     // $agent->agent_listing_appointments  = '' //can be null
     // $agent->agent_listings_taken  = ''  //can be null
     // $agent->agent_listings_sold   = ''  //can be null
     // $agent->agent_lead_to_sold_rate= '';  //can be null
     // $agent->agent_dollar_volume   = ''; //can be null
     $agent->agent_lead_received = false;
     $agent->brokerage_id = Brokerage::findorFail(1)->id;
     $agent->broker_id = Broker::findorFail(1)->id;
     $agent->save();
 }