Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie bekomme ich Daten aus der Datenbank, um die Seite in Laravel anzuzeigen?

[LÖSEN]

Vielen Dank, ich habe dieses Problem bereits gelöst

Dies ist der gelöste Code

web.php (Routen)

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

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

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

und in meiner 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