Prices::where('product_id', $product->id)->get()->latest('id');
<?php
Route::get('games', function () {
$games = DB::table('games')->get();
return view('games', ['games' => $games]);
});
//select specified colomns from all users
Employee::get(['name','email','title']);