[SOLVE]
Cảm ơn các bạn, tôi đã giải quyết vấn đề này rồi
Đây là mã đã giải quyết
web.php (các tuyến đường)
Route::get('listpetani', function () {
$petani = DB::table('tbl_user')->get();
return view('listpetani', ['petani' => $petani]);
});
và trong listpetani.blade.php
của tôi
@foreach($petani as $key => $data)
<tr>
<th>{{$data->id_user}}</th>
<th>{{$data->nama_user}}</th>
<th>{{$data->alamat}}</th>
<th>{{$data->no_telp}}</th>
<th>{{$data->id_lokasi}}</th>
</tr>
@endforeach