This action calls to this method in my other controller:
public function ft(Request $request) {
$v = Validator::make($request->file('le_file'),array(
'.*.*' => 'max:100|required', //max of 100kb
));
if ($v->fails()) return $v->messages();
return 'Success';
}
I'm not sure why but the validator doesn't seem to be picking up the files. Though I can get a returned uploaded file object when I return $request->file('le_file.0.0'); But for my validator, its like it can't get to the files, because it is always returning success. Any help with this is appreciated, thank you very much.