How do I get the id of the logged in user and insert it in the table along with description and title? I imagine it to be quite simple.
public function saveCallRegister()
{
$title = Request()->input('title');
$description = Request()->input('description');
DB::insert('INSERT INTO feeds (title, description) VALUES (?, ?)', array($description, $title));
return redirect()->action('HomeController@index');
}