Support the ongoing development of Laravel.io →
Database Eloquent Installation

My inserts are not inserting.

I made a save method in the model so I could put in some debugging. Here's my method:

    public function save(array $options = Array()){
        print "Fillable Array";
        var_dump($this->fillable);
        DB::enableQueryLog();
        print "arguments to parent::save";
        var_dump($options);
        print "result of parent::save()";
        var_dump(parent::save($options));
        print "query log";
        dd(DB::getQueryLog());

    }

Here are my results:

Fillable Array

array (size=14)
  0 => string 'first_mi' (length=8)
  1 => string 'last' (length=4)
  2 => string 'title' (length=5)
  3 => string 'city' (length=4)
  4 => string 'st' (length=2)
  5 => string 'zip' (length=3)
  6 => string 'home_ph' (length=7)
  7 => string 'company' (length=7)
  8 => string 'work_add' (length=8)
  9 => string 'work_csz' (length=8)
  10 => string 'work_ph' (length=7)
  11 => string 'fax' (length=3)
  12 => string 'email' (length=5)
  13 => string 'year_ret' (length=8)

arguments to parent::save

array (size=18)
  '_token' => string 'yyHLSTIWd04dVDS1xZtAyrrgYxCALcvA2rI8fqbm' (length=40)
  'first_mi' => string 'a' (length=1)
  'last' => string 'b' (length=1)
  'title' => string '' (length=0)
  'home_add' => string '' (length=0)
  'city' => string '' (length=0)
  'st' => string '' (length=0)
  'zip' => string '' (length=0)
  'home_ph' => string '' (length=0)
  'company' => string '' (length=0)
  'work_add' => string '' (length=0)
  'work_csz' => string '' (length=0)
  'work_ph' => string '' (length=0)
  'fax' => string '' (length=0)
  'email' => string 'h@i.j' (length=5)
  'year_ret' => string '' (length=0)
  'password' => string '' (length=0)
  'submit' => string 'Save' (length=4)

result of parent::save()

boolean true

query log

array:1 [▼
  0 => array:3 [▼
    "query" => "insert into `members` (`updated_at`, `created_at`) values (?, ?)"
    "bindings" => array:2 [▼
      0 => "2016-06-05 17:11:54"
      1 => "2016-06-05 17:11:54"
    ]
    "time" => 42.73
  ]
]
  ]
]

So I have all my fields in a fillable array, and my first_mi, last and email have data in them, yet the sql does not contain those fields.

What might I be doing wrong?

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.