我对质量任务感到有些困惑。我有一个输入字段(datepicker),需要在将其插入数据库之前进行修改(应用strtotime函数)。
使用质量分配时有没有办法做到这一点?
class Customer extends Ardent {
protected $table = 'customers';
public $autoPurgeRedundantAttributes = true;
public $autoHydrateEntityFromInput = true;
public $forceEntityHydrationFromInput = true;
protected $fillable = array(
'email',
);
}
答案 0 :(得分:0)
如果您只需要更改输入,则可以执行以下操作:
$input = Input::all();
$input['date'] = strtotime($input['date']);
Input::replace($input);