You had problems in two parts of your code and this one might work for you.
public function store()
{
$validator = Validator::make(
Input::only('title','body'),
['title' => 'required|min:5','body' => 'required|min:5']
);
if ($validator->fails()) {
return "Bye";
}
}
The problems were in rules
[Input::get('title'),Input::get('body')],
This is not the way you should pass them, you need an associative array, so you have two options:
['title' => Input::get('title'), 'body' => Input::get('body')],
or
Input::only('title','body'),
And you were not passing the fields names, but the input values
[Input::get("title") => 'required|min:5',Input::get("body") => 'required|min:5']
This would be the way to pass the fields names:
['title' => 'required|min:5', 'body' => 'required|min:5']