0

私がこれらの熱心なモデルを持っているとします

class User extends \LaravelBook\Ardent\Ardent
{
     public $autoHydrateEntityFromInput = true;
     protected $fillable = array('username', 'password', 'address');
     protected $table = 'Users';
     public static $relationsData = array(
     'location'  => array(self::HAS_ONE, 'Location');
}

class Location extends \LaravelBook\Ardent\Ardent
{
     protected $fillable = array('address');
     protected $table = 'Locations';         
}

さて、このようなコントローラーコードを書くと、

 $user = new User;
 $user->address = Input::get('address');
 $user->push();

アドレスデータをアドレステーブルに保存しません

4

1 に答える 1