I am taking the inputs BlogTitle,BlogBody and sending $BlogData to validation,,,
But how can i insert a new value i.e., BlogUrl which is generated inside the controller so that $BlogData will have those 3 values
$BlogData = Input::only('BlogTitle', 'BlogBody');
How can i do this ?