Laravel 4 Eloquent Mass Assignment - 修改输入

时间:2014-09-26 00:55:36

标签: php laravel laravel-4 eloquent

我对质量任务感到有些困惑。我有一个输入字段(datepicker),需要在将其插入数据库之前进行修改(应用strtotime函数)。

使用质量分配时有没有办法做到这一点?

class Customer extends Ardent {
    protected $table = 'customers';
    public $autoPurgeRedundantAttributes = true;
    public $autoHydrateEntityFromInput = true;   
    public $forceEntityHydrationFromInput = true; 


    protected $fillable = array(

        'email',
    );
}

1 个答案:

答案 0 :(得分:0)

如果您只需要更改输入,则可以执行以下操作:

$input = Input::all();

$input['date'] = strtotime($input['date']);

Input::replace($input);