Array to String conversion error on server using laravel eloquent Create

375 Views Asked by At

First of all I must tell you that my code is working on my localhost, the error I am getting is only on development server after deployment.

I am getting error on $list = Listing::create($data);

Here is my payload for $data

array:25 [
  "seller1_name" => "Seller 1"
  "seller2_name" => "Seller 2 test"
  "listing_date" => "2020-12-17"
  "listing_expire_date" => "2020-12-29"
  "address" => "New addrs"
  "city" => "new city"
  "state" => "new state"
  "zip" => "1231231"
  "list_price" => "4343434"
  "step_template_id" => 8
  "broker_fee_type" => "$"
  "transaction_fee" => "342342342342"
  "cobroker_split_type" => "$"
  "school_district" => "dsadasad"
  "broker_fee" => "3424234"
  "cobroker_split" => "34243"
  "agents" => array:2 [
    0 => array:2 [
      "key" => 78
      "value" => "Agent1 user"
    ]
    1 => array:2 [
      "key" => 84
      "value" => "Agent2 user"
    ]
  ]
  "admin_id" => 68
  "login_user_id" => 68
  "login_email" => "[email protected]"
  "chargebee_plan_id" => "starter"
  "customer_id" => "AzZlzTSI5w7bDEMt"
  "role_id" => 1
  "user_company" => null
  "created_by" => 68
]

My Listing.php Model have many to many relation

public function agents()
    {
        return $this->belongsToMany('App\User', 'listing_agents', 'listing_id', 'agent_id');
    }

If you need any other information from my end please let me know in the comment.

EDIT:

To store data in my relation I am using this.

$agents = $request->agents;
            array_walk($agents, function (& $item, $key, $listing) {
                $item['listing_id'] = $listing->id;
                $item['agent_id'] = $item['key'];
                unset($item['key']);
            }, $listing);

            if($listing) {
                $listing->listing_agents()->createMany($agents);
            }

Relation:

public function listing_agents()
    {
        return $this->hasMany('App\ListingAgent', 'listing_id');
    }
0

There are 0 best solutions below