@newbie14 To get the current authenticated user you can do this.
use Illuminate\Support\Facades\Auth;
$user = Auth::user();
Here are the auth docs. Give them a read.
The introduction to eloquent in the docs will give you a clear understanding on Eloquent, how to create models, naming conventions, etc. In short,
By convention, the "snake case", plural name of the class will be used as the > table name unless another name is explicitly specified.
Also, next time you post, try to include a code sample of what you have tried. It is much easier to give assistance, and as a result, people will be much more likely to help if they can see what you are trying.