Route::get('goods', 'App\Http\Controllers\GoodsController@allData')->name('allData');public function allData() {
$goods = new Goods;
//dd($goods->all());
return view('goods',['data' => Goods::all()]);
}@foreach ($data as $product)
<tr>
<th>{{ $product->Product_Name }}</th>
<th>{{ $product->External_ID }}</th>
</tr>
@endforeach