@nafeeur10 Select the product ID, make a post request to an endpoint using the product ID, using Route model binding you will have the product with its full details:
Route::post('product/{product}', 'ProductsController@store')->name('create.product');
In the controller:
public function store(Product $product)
{
dd($product); // description and cost within the product.
}