I have an Ardent (Laravel 4) model with validation rules as below:
public static $rules = array(
'title' => 'required|alpha_num|min:4',
'friendly' => 'required|alpha_num|url'
);
When I try this:
$page = Page::find($id);
$page->menu=1;
$page->save();
It fails, because of the validation rules of other fields. My question is how can I update only one field as above?