Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment obtenir des données de la base de données pour afficher la page dans laravel?

[RÉSOUDRE]

Merci les gars, j'ai déjà résolu ce problème

Ceci est le code résolu

web.php (routes)

Route::get('listpetani', function () {

    $petani = DB::table('tbl_user')->get();

    return view('listpetani', ['petani' => $petani]);
});

et dans mon listpetani.blade.php

@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